1234567891011121314151617181920212223242526272829303132333435 |
- #!/usr/bin/python
- # -*- coding: utf-8 -*-
- #
- # Licensed under the GNU General Public License, version 3.
- # See the file http://www.gnu.org/licenses/gpl.txt
- from pisi.actionsapi import shelltools
- from pisi.actionsapi import cmaketools
- from pisi.actionsapi import pisitools
- from pisi.actionsapi import get
- #WorkDir = "lloyd-yajl-f4b2b1a"
- def setup():
- shelltools.makedirs("build")
- shelltools.cd("build")
- cmaketools.configure(sourceDir="..")
- def build():
- shelltools.cd("build")
- cmaketools.make()
- #def check():
- #shelltools.cd("test")
- #shelltools.system("./run_tests.sh")
- def install():
- shelltools.cd("build")
- cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
- pisitools.remove("/usr/lib/*.a")
- shelltools.cd("..")
- pisitools.dodoc("ChangeLog", "COPYING", "README")
|