actions.py 830 B

12345678910111213141516171819202122232425262728
  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 get
  7. from pisi.actionsapi import autotools
  8. from pisi.actionsapi import pisitools
  9. from pisi.actionsapi import shelltools
  10. def setup():
  11. autotools.autoreconf("-ivf")
  12. shelltools.system("intltoolize --force --copy --automake")
  13. autotools.configure("--enable-gio \
  14. --enable-html \
  15. --enable-spell \
  16. --with-gtk=gtk3 \
  17. --enable-sourceview \
  18. --enable-icon-browser")
  19. def build():
  20. autotools.make()
  21. def install():
  22. autotools.rawInstall("DESTDIR=%s" % get.installDIR())
  23. pisitools.dodoc("COPYING", "README*")