123456789101112131415161718 |
- from pisi.actionsapi import shelltools, autotools, get
- def setup():
- shelltools.system("./autogen.sh")
- autotools.configure("--disable-static")
- def build():
- autotools.make()
- def install():
- autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|