actions.py 878 B

1234567891011121314151617181920212223242526272829303132
  1. #!/usr/bin/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. shelltools.system("patch -p1 -R < bdc281eadb1d58d5c0c7bbc1125ee4674256df08.patch")
  12. shelltools.system("./bootstrap.sh")
  13. autotools.configure("--disable-static \
  14. --with-fontconfig \
  15. --with-png \
  16. --with-freetype \
  17. --with-jpeg \
  18. --without-xpm")
  19. def build():
  20. autotools.make()
  21. def install():
  22. autotools.rawInstall("DESTDIR=%s" % get.installDIR())
  23. pisitools.dohtml(".")
  24. pisitools.dodoc("COPYING", "README*")