actions.py 378 B

123456789101112131415161718192021222324
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. # Licensed under the GNU General Public License, version 3.
  4. # See the file http://www.gnu.org/copyleft/gpl.txt
  5. from inary.actionsapi import qt
  6. from inary.actionsapi import inarytools
  7. def setup():
  8. qt.configure()
  9. def build():
  10. qt.make()
  11. def install():
  12. qt.install()
  13. inarytools.dodoc("LICENSE.GPL3", "README")