add geany plugins

This commit is contained in:
Erkan IŞIK
2020-04-16 14:50:38 +03:00
parent 56e0da7f26
commit b72027c995
3 changed files with 170 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
pisitools.cflags.add("-Wno-deprecated-declarations")
autotools.configure("\
\
--enable-geanypg \
--enable-markdown \
--enable-debugger \
--enable-geanylua \
--enable-utilslib \
--enable-spellcheck \
--enable-geanygendoc \
--enable-gitchangebar \
--enable-gtkspell=yes \
\
--disable-geanypy \
--disable-devhelp \
--disable-webhelper \
--disable-multiterm")
def build():
autotools.make()
def check():
autotools.make("check")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("NEWS", "README")