actions.py 824 B

1234567891011121314151617181920212223242526272829303132
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. #
  4. # Licensed under the GNU General Public License, version 3.
  5. # See the file https://www.gnu.org/licenses/gpl-3.0.txt
  6. from pisi.actionsapi import cmaketools, mesontools, pisitools
  7. y = ''.join([
  8. ' -DCMAKE_BUILD_TYPE=Release',
  9. ' -DCMAKE_INSTALL_PREFIX=/usr',
  10. ' -DBUILD_SHARED_LIBS=ON',
  11. ' -DENABLE_{UTILS,DOCUMENTATION}=ON',
  12. ' -Bbuild -G Ninja -L '
  13. ])
  14. def setup():
  15. cmaketools.configure(y)
  16. def build():
  17. mesontools.build()
  18. def install():
  19. mesontools.install()
  20. from pisi.actionsapi import shelltools, get
  21. for b in ["nfs-cat", "nfs-cp", "nfs-ls", "nfs-stat"]:
  22. shelltools.chmod("%s/usr/bin/%s" % (get.installDIR(), b), mode = 0755)
  23. for l in ["BSD", "GPL-3", "LGPL-2.1"]:
  24. pisitools.dodoc("COPYING", "LICENCE-%s.txt" % l)