actions.py 626 B

123456789101112131415161718192021222324252627
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. #
  4. # Licensed under the GNU General Public License, version 2
  5. # See the file http://www.gnu.org/copyleft/gpl.txt
  6. from inary.actionsapi import autotools
  7. from inary.actionsapi import inarytools
  8. from inary.actionsapi import get
  9. WorkDir="confuse-%s" % get.srcVERSION()
  10. def setup():
  11. autotools.configure("--enable-static=no \
  12. --enable-shared=yes \
  13. --enable-nls")
  14. def build():
  15. autotools.make()
  16. def install():
  17. autotools.install()
  18. inarytools.dodoc("AUTHORS", "README", "NEWS")
  19. inarytools.doman("doc/man/man3/*")