actions.py 760 B

12345678910111213141516171819202122232425262728
  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 autotools
  7. from pisi.actionsapi import pisitools
  8. from pisi.actionsapi import libtools
  9. from pisi.actionsapi import get
  10. def setup():
  11. autotools.autoreconf("-vfi")
  12. autotools.configure("--disable-gtk \
  13. --disable-gtktest \
  14. --disable-static \
  15. --without-debug \
  16. --enable-sdl \
  17. --enable-xv")
  18. def build():
  19. autotools.make()
  20. def install():
  21. autotools.install()
  22. pisitools.dodoc("AUTHORS", "COPYRIGHT", "ChangeLog", "NEWS", "README*", "TODO")