actions.py 473 B

123456789101112131415161718192021
  1. # -*- coding: utf-8 -*-
  2. #
  3. # Licensed under the GNU General Public License, version 3.
  4. # See the file http://www.gnu.org/licenses/gpl.txt
  5. from pisi.actionsapi import autotools
  6. from pisi.actionsapi import pisitools
  7. def setup():
  8. autotools.configure()
  9. def build():
  10. autotools.make()
  11. def install():
  12. autotools.install()
  13. # Fix conflict with xorg-app
  14. pisitools.remove("/usr/include/X11/bitmaps/black6")
  15. pisitools.remove("/usr/include/X11/bitmaps/box6")