1234567891011121314151617181920212223242526272829303132333435 |
- #!/usr/bin/python
- # -*- coding: utf-8 -*-
- #
- # Licensed under the GNU General Public License, version 3.
- # See the file http://www.gnu.org/copyleft/gpl.txt.
- from pisi.actionsapi import get
- from pisi.actionsapi import autotools
- from pisi.actionsapi import pisitools
- from pisi.actionsapi import shelltools
- def setup():
- autotools.configure("--disable-static")
- def build():
- autotools.make()
- def check():
- # Needs dejagnu package
- autotools.make("check")
- def install():
- autotools.rawInstall("DESTDIR=%s" % get.installDIR())
- if get.buildTYPE() == "emul32":
- # Remove duplicated header files
- pisitools.removeDir("/usr/lib32/%s" % get.srcDIR())
- # Fix emul32 includedir
- pisitools.dosym("/usr/lib/%s/include" % get.srcDIR(),
- "/usr/lib32/%s/include" % get.srcDIR())
- pisitools.dodoc("ChangeLog*", "LICENSE", "README*")
|