actions.py 392 B

12345678910111213141516171819
  1. # -*- coding: utf-8 -*-
  2. #
  3. # Licensed under the GNU General Public License, version 2.
  4. # See the file http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
  5. from inary.actionsapi import autotools
  6. from inary.actionsapi import inarytools
  7. def setup():
  8. autotools.configure()
  9. def build():
  10. autotools.make()
  11. def install():
  12. autotools.install()
  13. inarytools.dodoc('AUTHORS', 'README')