actions.py 417 B

1234567891011121314151617181920
  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.autoreconf("-vif")
  9. autotools.configure()
  10. def build():
  11. autotools.make()
  12. def install():
  13. autotools.install()
  14. pisitools.dodoc("ChangeLog", "COPYING", "README")