37 lines
931 B
Python
37 lines
931 B
Python
#!/usr/bin/python
|
|
# -*- 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 shelltools
|
|
from pisi.actionsapi import autotools
|
|
from pisi.actionsapi import pisitools
|
|
from pisi.actionsapi import get
|
|
|
|
def setup():
|
|
options = "--enable-nls \
|
|
--disable-java \
|
|
--disable-csharp \
|
|
--disable-rpath \
|
|
--disable-gtk-doc \
|
|
--disable-static"
|
|
|
|
if get.buildTYPE() == "emul32":
|
|
options += " --bindir=/emul32/bin"
|
|
|
|
shelltools.export("CFLAGS", "%s -m32" % get.CFLAGS())
|
|
|
|
autotools.configure(options)
|
|
|
|
def build():
|
|
autotools.make()
|
|
|
|
def check():
|
|
autotools.make("-C tests check")
|
|
|
|
def install():
|
|
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
|
|
|
pisitools.dodoc("AUTHORS", "ChangeLog", "FAQ", "NEWS", "README", "THANKS")
|