1234567891011121314151617181920212223 |
- from inary.actionsapi import autotools
- from inary.actionsapi import inarytools
- from inary.actionsapi import get
- def setup():
- autotools.configure("--disable-static")
- def build():
- autotools.make()
- def check():
- autotools.make("check")
- def install():
- autotools.rawInstall("DESTDIR=%s" % get.installDIR())
- inarytools.dodoc("ChangeLog", "COPYING", "TODO*", "NEWS", "README")
|