12345678910111213141516171819202122232425 |
- from pisi.actionsapi import get
- from pisi.actionsapi import pisitools
- from pisi.actionsapi import autotools
- def setup():
- autotools.configure("--disable-static \
- --with-raptor=2")
- pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
- def build():
- autotools.make()
- def install():
- autotools.rawInstall("DESTDIR=%s" % get.installDIR())
- pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING.*", "LICENSE.*", "README")
|