actions.py 534 B

123456789101112131415161718192021222324
  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 pisitools, mesontools
  7. def setup():
  8. mesontools.configure("--prefix=/usr \
  9. --libexecdir=/usr/lib/cinnamon-session \
  10. --buildtype=plain")
  11. def build():
  12. mesontools.build()
  13. def install():
  14. mesontools.install()
  15. pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README")