actions.py 921 B

12345678910111213141516171819202122232425262728293031
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. #
  4. # Licensed under the GNU General Public License, version 3.
  5. # See the file http://www.gnu.org/licenses/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. def setup():
  11. shelltools.system("mkdir build")
  12. shelltools.cd("build")
  13. cmaketools.configure("-DCMAKE_BUILD_TYPE=Release \
  14. -DBUILD_SHARED_LIBS=1 \
  15. -DCMAKE_INSTALL_PREFIX=/usr \
  16. -DCMAKE_INSTALL_LIBDIR=/usr/lib \
  17. -DCMAKE_INSTALL_LIBDIR_NOARCH=/usr/lib", sourceDir = '..')
  18. def build():
  19. shelltools.cd("build")
  20. cmaketools.make()
  21. def install():
  22. shelltools.cd("build")
  23. cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
  24. shelltools.cd("..")
  25. pisitools.dodoc("README*")