123456789101112131415161718192021222324252627282930313233343536373839 |
- #!/usr/bin/env python3
- # -*- coding: utf-8 -*-
- #
- # Licensed under the GNU General Public License, version 3.
- # See the file http://www.gnu.org/licenses/gpl.txt
- from inary.actionsapi import get
- from inary.actionsapi import libtools
- from inary.actionsapi import autotools
- from inary.actionsapi import inarytools
- def setup():
- autotools.autoreconf("-vif")
- autotools.configure("--enable-jit \
- --enable-pcre2grep-libz \
- --enable-pcre2grep-libbz2 \
- --enable-pcre2test-libreadline \
- --enable-pcre2-32 \
- --enable-pcre2-16 \
- --enable-utf \
- --enable-unicode-properties \
- --enable-cpp \
- --docdir=/%s/%s \
- --disable-static" % (get.docDIR(), get.srcNAME()))
- inarytools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
- def build():
- autotools.make()
- def check():
- if get.buildTYPE() == "emul32":
- pass
- else:
- autotools.make("-j1 check")
- def install():
- autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|