123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #!/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 mesontools
- from inary.actionsapi import inarytools
- from inary.actionsapi import shelltools
- from inary.actionsapi import get
- def setup():
- shelltools.export("CFLAGS", "{} -DG_DISABLE_CAST_CHECKS".format(get.CFLAGS()))
- options=""
- if get.buildTYPE()=="emul32":
- shelltools.export("CC", "gcc -m32")
- shelltools.export("CXX", "g++ -m32")
- shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig")
- shelltools.system("patch -p1 < multilib.patch")
- mesontools.meson_configure(options)
- def build():
- if get.buildTYPE()=="emul32":
- shelltools.export("CC", "gcc -m32 -mstackrealign -mfpmath=sse")
- shelltools.export("CXX", "g++ -m32 -mstackrealign -mfpmath=sse")
- shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig")
- mesontools.ninja_build()
- def install():
- if get.buildTYPE()=="emul32":
- shelltools.system('DESTDIR="{}/emul32" ninja install -C inaryPackageBuild'.format(get.installDIR()))
- inarytools.domove("/emul32/usr/lib32", "/usr/")
- inarytools.domove("/emul32/usr/bin/*", "/usr/bin/32")
- inarytools.removeDir("/emul32")
- return
- else:
- mesontools.ninja_install()
|