actions.py 1005 B

1234567891011121314151617181920212223242526272829303132
  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. -DHAVE_LINUX_API=1 \
  16. -DCMAKE_INSTALL_PREFIX=/usr \
  17. -DCMAKE_INSTALL_LIBDIR=/usr/lib \
  18. -DCMAKE_INSTALL_LIBDIR_NOARCH=/usr/lib", sourceDir = '..')
  19. def build():
  20. shelltools.cd("build")
  21. cmaketools.make()
  22. def install():
  23. shelltools.cd("build")
  24. cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
  25. shelltools.cd("..")
  26. pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "README*")