12345678910111213141516171819202122232425262728293031323334353637383940 |
- #!/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 autotools
- from inary.actionsapi import inarytools
- from inary.actionsapi import shelltools
- from inary.actionsapi import libtools
- from inary.actionsapi import get
- def setup():
- inarytools.dosed("configure.in", "-O")
- options = "\
- --enable-mmx \
- --disable-static"
- if get.buildTYPE() == "emul32":
- options += " --includedir=/usr/include \
- --libdir=/usr/lib32"
- shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig")
- shelltools.export("CFLAGS", "%s -m32" % get.CFLAGS())
- shelltools.export("CXXFLAGS", "%s -m32" % get.CXXFLAGS())
- shelltools.export("LDFLAGS", "%s -m32" % get.LDFLAGS())
- autotools.configure(options)
- def build():
- autotools.make()
- def install():
- autotools.rawInstall("DESTDIR=%s" % get.installDIR())
- inarytools.dodoc("AUTHORS", "ChangeLog" , "README")
- inarytools.insinto("/%s/sdl-gfx/" % get.docDIR(), "Docs", "html")
|