actions.py 791 B

123456789101112131415161718192021222324252627282930
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. #
  4. # Licensed under the GNU General Public License, version 2.
  5. # See the file http://www.gnu.org/copyleft/gpl.txt.
  6. from pisi.actionsapi import cmaketools
  7. from pisi.actionsapi import pisitools
  8. from pisi.actionsapi import shelltools
  9. from pisi.actionsapi import get
  10. # WorkDir = ""
  11. def setup():
  12. shelltools.system("sed -i 's|lib/systemd/user|share/dbus-1/services|g' CMakeLists.txt")
  13. shelltools.makedirs("build")
  14. shelltools.cd("build")
  15. cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr", sourceDir="..")
  16. def build():
  17. shelltools.cd("build")
  18. cmaketools.make()
  19. def install():
  20. shelltools.cd("build")
  21. cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
  22. shelltools.cd("..")
  23. pisitools.dodoc("README*", "COPYING")