actions.py 675 B

12345678910111213141516171819202122232425
  1. #!/usr/bin/env python3
  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 inary.actionsapi import get
  7. from inary.actionsapi import autotools
  8. from inary.actionsapi import inarytools
  9. def setup():
  10. autotools.autoreconf("-vif")
  11. autotools.configure("--disable-static \
  12. --enable-test \
  13. --disable-dependency-tracking \
  14. --with-gnu-ld")
  15. def build():
  16. autotools.make()
  17. def install():
  18. autotools.rawInstall('DESTDIR="%s"' % get.installDIR())
  19. inarytools.dodoc("ChangeLog","COPYING","NEWS","README")