actions.py 826 B

1234567891011121314151617181920212223242526
  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 shelltools
  7. from pisi.actionsapi import autotools
  8. from pisi.actionsapi import pisitools
  9. from pisi.actionsapi import get
  10. def setup():
  11. # Remove .c file to be regenerated from .defs file
  12. shelltools.unlink("src/pynotify.c")
  13. # suppress c compiler warnings
  14. pisitools.cflags.add("-Wno-deprecated-declarations -Wno-implicit-function-declaration")
  15. autotools.autoreconf("-fi")
  16. autotools.configure()
  17. # fix unused direct dependency analysis
  18. pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
  19. def build():
  20. autotools.make()
  21. def install():
  22. autotools.rawInstall("DESTDIR=%s" % get.installDIR())