12345678910111213141516171819202122232425 |
- from pisi.actionsapi import autotools
- from pisi.actionsapi import pisitools
- def setup():
- autotools.configure("--prefix=/usr \
- --disable-static \
- --enable-shared")
- def build():
- autotools.make()
- def check():
- autotools.make("check")
- def install():
- autotools.install()
- pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README")
|