actions.py 480 B

123456789101112131415161718192021
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. # Licensed under the GNU General Public License, version 3.
  4. # See the file http://www.gnu.org/copyleft/gpl.txt
  5. from inary.actionsapi import autotools
  6. from inary.actionsapi import get
  7. from inary.actionsapi import inarytools
  8. from inary.actionsapi import shelltools
  9. def setup():
  10. autotools.configure("--disable-apport")
  11. def build():
  12. autotools.make()
  13. def install():
  14. autotools.rawInstall("DESTDIR=%s" % get.installDIR())