actions.py 443 B

123456789101112131415161718192021222324
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. # -*- coding: utf-8 -*-
  4. #
  5. # Copyright 2011 TUBITAK/BILGEM
  6. # Licensed under the GNU General Public License, version 2.
  7. # See the file http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
  8. from pisi.actionsapi import qt5
  9. from pisi.actionsapi import pisitools
  10. def setup():
  11. qt5.configure()
  12. def build():
  13. qt5.make()
  14. def install():
  15. qt5.install()
  16. pisitools.dodoc("README.md", "COPYING")