123456789101112131415161718192021222324252627 |
- from pisi.actionsapi import autotools
- from pisi.actionsapi import pisitools
- from pisi.actionsapi import get
- def setup():
- autotools.configure("--prefix=/usr \
- --disable-debug")
-
- def build():
- autotools.make()
- def install():
- autotools.rawInstall("DESTDIR=%s" % get.installDIR())
-
-
-
-
-
-
- pisitools.dodoc("README")
|