actions.py 527 B

12345678910111213141516171819202122232425
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. #
  4. # Copyright 2007-2009 TUBITAK/UEKAE
  5. # Licensed under the GNU General Public License, version 2.
  6. # See the file http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
  7. from inary.actionsapi import perlmodules
  8. from inary.actionsapi import inarytools
  9. from inary.actionsapi import get
  10. def setup():
  11. perlmodules.configure()
  12. def build():
  13. perlmodules.make()
  14. def check():
  15. perlmodules.make()
  16. def install():
  17. perlmodules.install()
  18. inarytools.dodoc("Changes", "README.md")