actions.py 567 B

123456789101112131415161718192021
  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 get
  9. def build():
  10. autotools.make('verbose=1 CXXFLAGS="%s"' % get.CXXFLAGS())
  11. def install():
  12. autotools.rawInstall("install_prefix=%s/usr" % get.installDIR())
  13. # Fix conflicts with mono
  14. pisitools.rename("/usr/bin/xsd", "xsdcxx")
  15. pisitools.rename("/usr/share/man/man1/xsd.1", "xsdcxx.1")