123456789101112131415161718192021222324252627 |
- from pisi.actionsapi import shelltools, autotools, pisitools, get
- i = ''.join([
- ' --disable-oss',
- ' --disable-coreaudio '
- ])
- def setup():
- shelltools.export("CC", "/usr/bin/clang")
- shelltools.export("CXX", "/usr/bin/clang++")
-
- autotools.configure(i)
- def build():
- autotools.make()
- def install():
- autotools.rawInstall("DESTDIR=%s" % get.installDIR())
- pisitools.dodoc("about.txt", "AUTHORS", "ChangeLog")
|