actions.py 419 B

1234567891011121314151617181920212223
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. #
  4. # Licensed under the GNU General Public License, version 3.
  5. # See the file https://www.gnu.org/licenses/gpl-3.0.txt
  6. from pisi.actionsapi import perlmodules, shelltools
  7. shelltools.export("PERL_USE_UNSAFE_INC", "1")
  8. def setup():
  9. perlmodules.configure()
  10. def build():
  11. perlmodules.make()
  12. def check():
  13. pass
  14. #perlmodules.make("test")
  15. def install():
  16. perlmodules.install()