12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- # -*- coding: utf-8 -*-
- #
- # Licensed under the GNU General Public License, version 3.
- # See the file http://www.gnu.org/licenses/gpl.txt
- from pisi.actionsapi import autotools
- from pisi.actionsapi import pisitools
- from pisi.actionsapi import shelltools
- from pisi.actionsapi import get
- def setup():
- pisitools.flags.add("-fno-strict-aliasing")
- autotools.configure("--enable-gtk2 \
- --enable-shared \
- --disable-optimise \
- --disable-debug \
- --enable-no_deps \
- --disable-rpath \
- --enable-intl \
- --enable-geometry \
- --enable-timer \
- --enable-unicode \
- --enable-sound \
- --enable-mediactrl \
- --enable-xrc \
- --enable-graphics_ctx \
- --enable-display \
- --enable-joystick \
- --disable-gtktest \
- --disable-sdltest \
- --disable-precomp-headers \
- --with-gtk=2 \
- --with-libpng=sys \
- --with-libjpeg=sys \
- --with-libtiff=sys \
- --with-libxpm=sys \
- --with-sdl \
- --without-gnomeprint \
- --without-gnomevfs \
- --without-odbc \
- --with-opengl \
- --with-regex=builtin \
- --with-zlib=sys \
- --with-expat=sys")
- def build():
- autotools.make()
- autotools.make("-C locale allmo")
- def install():
- autotools.rawInstall("DESTDIR=%s" % get.installDIR())
- #autotools.install()
- pisitools.dodoc("docs/*.txt", "docs/*.htm")
|