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