123456789101112131415161718192021222324 |
- from pisi.actionsapi import autotools
- from pisi.actionsapi import shelltools
- from pisi.actionsapi import pisitools
- from pisi.actionsapi import get
- def setup():
- shelltools.system("sed -i -e 's/$GNUCHESS/gcompris-gnuchess/' configure")
- autotools.configure("--prefix=/usr")
-
- pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
- def build():
- autotools.make()
- def install():
- autotools.rawInstall("DESTDIR=%s" % get.installDIR())
-
- pisitools.dodoc("AUTHORS", "COPYING", "NEWS", "README", "INSTALL")
|