actions.py 620 B

123456789101112131415161718192021222324252627
  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 autotools
  7. from pisi.actionsapi import pisitools
  8. from pisi.actionsapi import shelltools
  9. def setup():
  10. # https://bugs.freedesktop.org/show_bug.cgi?id=70366
  11. shelltools.export("ac_cv_func_fdatasync", "no")
  12. autotools.configure("--disable-update-mimedb")
  13. def build():
  14. autotools.make('-j1')
  15. def check():
  16. autotools.make("check")
  17. def install():
  18. autotools.install()
  19. pisitools.dodoc("ChangeLog", "NEWS", "README")