add openslp in main

This commit is contained in:
Ertuğrul Erata
2016-04-01 19:10:43 +03:00
parent 1ead06e429
commit bb7be7d040
9 changed files with 309 additions and 2 deletions
+34
View File
@@ -0,0 +1,34 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import shelltools
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
shelltools.export("CFLAGS", "%s -fPIC -fno-strict-aliasing -fPIE -DPIE " % get.CFLAGS())
shelltools.export("LDFLAGS", "%s -pie -Wl,-z,now" % get.LDFLAGS())
autotools.autoreconf("-fi")
autotools.configure("--disable-static \
--disable-dependency-tracking \
--disable-rpath \
--localstatedir=/var \
--enable-slpv1 \
--enable-slpv2-security")
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make("all docs")
def install():
autotools.install()
pisitools.dohtml("doc/doc/html/*")
pisitools.dodoc("AUTHORS", "FAQ", "ChangeLog", "NEWS", "README", "THANKS")