frei0r-plugins 1.7.0

This commit is contained in:
idriskalp
2020-01-18 18:16:29 +03:00
parent f184b53a3a
commit 92496b8f72
2 changed files with 18 additions and 6 deletions
+7 -4
View File
@@ -6,16 +6,19 @@
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import cmaketools
from pisi.actionsapi import get
def setup():
autotools.autoreconf("-fi")
autotools.configure("--enable-static=no")
#autotools.autoreconf("-fi")
#autotools.configure("--enable-static=no")
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
#pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
cmaketools.configure()
def build():
autotools.make()
cmaketools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())