actions.py 945 B

12345678910111213141516171819202122232425262728293031323334
  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. from pisi.actionsapi import get
  10. def setup():
  11. shelltools.system("sed -i '/math.h/a #include <malloc.h>' src/flexdef.h")
  12. pisitools.flags.add("-fPIC")
  13. shelltools.export("AUTOPOINT", "true")
  14. autotools.autoreconf("-vfi")
  15. # do not enable nls http://bugs.gentoo.org/121408
  16. autotools.configure("--disable-nls \
  17. --disable-dependency-tracking")
  18. pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
  19. def build():
  20. autotools.make("-j1")
  21. def install():
  22. autotools.rawInstall("DESTDIR=%s" % get.installDIR())
  23. pisitools.dosym("flex", "/usr/bin/lex")
  24. pisitools.dodoc("NEWS", "README.md")