actions.py 471 B

123456789101112131415161718192021
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. #
  4. # Licensed under the GNU General Public License, version 3.
  5. # See the file https://www.gnu.org/licenses/gpl-3.0.txt
  6. from pisi.actionsapi import pisitools
  7. from pisi.actionsapi import qt5
  8. def setup():
  9. qt5.configure()
  10. def build():
  11. pisitools.dosed("pisido.pro", "-lqscintilla2", "-lqt5scintilla2")
  12. qt5.make()
  13. def install():
  14. qt5.install()
  15. pisitools.dodoc("LICENSE", "LISANS", "OKUBUNU", "README", "Lizenz")