12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #!/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 get
- WorkDir = "SDL2_image-%s" % get.srcVERSION()
- def setup():
- options = "--disable-dependency-tracking \
- --disable-static \
- --enable-gif \
- --enable-jpg \
- --enable-tif \
- --enable-png \
- --enable-pnm \
- --enable-bmp \
- --enable-xcf \
- --enable-xpm \
- --enable-tga \
- --enable-lbm \
- --enable-pcx \
- --disable-jpg-shared \
- --disable-png-shared \
- --disable-tif-shared"
- 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())
- for i in ["NEWS", "AUTHORS", "ChangeLog"]:
- shelltools.touch(i)
- #autotools.autoreconf("-vfi")
- autotools.configure(options)
- def build():
- autotools.make()
- def install():
- autotools.rawInstall("DESTDIR=%s" % get.installDIR())
- if get.buildTYPE() != "emul32":
- inarytools.dobin(".libs/showimage")
|