actions.py 804 B

123456789101112131415161718192021222324252627282930
  1. #!/usr/bin/env python3
  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 inary.actionsapi import autotools
  7. from inary.actionsapi import inarytools
  8. def setup():
  9. autotools.configure("--prefix=/usr \
  10. --with-xscreensaver \
  11. --with-freetype \
  12. --with-pango \
  13. --with-cspice \
  14. --with-gif \
  15. --with-jpeg \
  16. --with-png \
  17. --with-pnm \
  18. --with-tiff")
  19. def build():
  20. autotools.make()
  21. def install():
  22. autotools.install()
  23. inarytools.dodoc("AUTHORS", "COPYING", "NEWS", "README", "TODO")