123456789101112131415161718192021222324252627282930313233 |
- #!/usr/bin/env python3
- # -*- coding: utf-8 -*-
- #
- # Licensed under the GNU General Public License, version 3.
- # See the file http://www.gnu.org/copyleft/gpl.txt.
- from inary.actionsapi import autotools
- from inary.actionsapi import inarytools
- from inary.actionsapi import shelltools
- from inary.actionsapi import get
- def setup():
- autotools.configure("--disable-static\
- --sbindir=/sbin \
- --libdir=/lib \
- --disable-rpath \
- --enable-python \
- PYTHON={} \
- --with-python".format(
- "/usr/bin/python2.7" if get.buildTYPE()=="rebuild_python" else "/usr/bin/python3.7"))
- inarytools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
- def build():
- autotools.make()
- def install():
- autotools.rawInstall("DESTDIR=%s" % get.installDIR())
- inarytools.domove("/lib/pkgconfig/*", "/usr/lib/pkgconfig/")
- shelltools.unlinkDir("{}/lib/pkgconfig/".format(get.installDIR()))
- inarytools.dodoc("ABOUT-NLS", "AUTHORS", "ChangeLog", "COPYING*",
- "FAQ", "README*", "NEWS", "TODO")
|