add geany plugins
This commit is contained in:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user