actions.py 723 B

123456789101112131415161718192021222324
  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 pisitools
  7. from pisi.actionsapi import autotools
  8. from pisi.actionsapi import get
  9. def setup():
  10. # suppress compiler warnings
  11. pisitools.cflags.add("-Wno-int-to-pointer-cast -Wno-cast-function-type -Wno-pointer-to-int-cast")
  12. autotools.configure("--enable-static=no")
  13. def build():
  14. autotools.make()
  15. def install():
  16. autotools.rawInstall("DESTDIR=%s" % get.installDIR())
  17. pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "README*")
  18. pisitools.insinto("/usr/share/bash-completion/completions/","bash-completion/oggz")