actions.py 696 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 pisitools
  7. from pisi.actionsapi import mesontools
  8. def setup():
  9. # pisitools.dosed("meson.build", "rest-0.7", "rest-1.0")
  10. # pisitools.dosed("src/gr-shopping-list-exporter.c", "rest/rest-oauth2-proxy.h", "rest-1.0/rest/rest-oauth2-proxy.h")
  11. # pisitools.dosed("src/gr-shopping-list-exporter.c", "rest/oauth2-proxy.h", "rest-1.0/rest/rest-oauth2-proxy.h")
  12. mesontools.configure()
  13. def build():
  14. mesontools.build()
  15. def install():
  16. mesontools.install()
  17. pisitools.dodoc("COPYING", "README.md")