actions.py 533 B

1234567891011121314151617181920212223
  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 mesontools, pisitools
  7. def setup():
  8. mesontools.configure("--libexecdir=/usr/lib")
  9. def build():
  10. mesontools.build()
  11. def install():
  12. mesontools.install()
  13. #these file comes from libhandy
  14. pisitools.removeDir("/usr/share/locale")
  15. #pisitools.remove("/usr/lib/libhandy-1.so*")
  16. pisitools.dodoc("README.md", "LICENSE*")