actions.py 595 B

1234567891011121314151617181920212223
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. #
  4. # Licensed under the GNU General Public License, version 2.
  5. # See the file http://www.gnu.org/copyleft/gpl.txt.
  6. from pisi.actionsapi import mesontools, pisitools
  7. def setup():
  8. #notify-0.8
  9. pisitools.dosed("meson.build", "0.7.3", "0.8.0")
  10. mesontools.configure("--prefix=/usr \
  11. --libexecdir=/usr/lib/cinnamon-settings-daemon \
  12. --buildtype=plain")
  13. def build():
  14. mesontools.build()
  15. def install():
  16. mesontools.install()
  17. pisitools.dodoc("AUTHORS", "ChangeLog", "README*", "NEWS")