actions.py 572 B

1234567891011121314151617181920212223242526
  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. j = "USE_SYSTEM_QUAZIP=1 USE_SYSTEM_HUNSPELL=1 INTERNAL_TERMINAL=1 \
  9. QUAZIP_LIB=-lquazip1-qt5 \
  10. QUAZIP_INCLUDE='usr/include/QuaZip-Qt5-1.4/quazip'"
  11. def setup():
  12. #qt5.configure("texstudio.pro", parameters='%s' % j)
  13. qt5.configure()
  14. def build():
  15. qt5.make()
  16. def install():
  17. qt5.install()
  18. # pisitools.dodoc("COPYING", "README.md")