actions.py 380 B

1234567891011121314151617181920212223
  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.md")