12345678910111213141516171819202122 |
- from pisi.actionsapi import autotools
- from pisi.actionsapi import get
- def setup():
- autotools.autoreconf("-fi")
- autotools.configure("--disable-static \
- --disable-gengetopt")
- def build():
- autotools.make()
- def install():
- autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|