actions.py 542 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 http://www.gnu.org/licenses/gpl.txt
  6. from pisi.actionsapi import kde6
  7. def setup():
  8. kde6.configure("-DCMAKE_BUILD_TYPE=Release \
  9. -DBUILD_TESTING=OFF \
  10. -DCMAKE_INSTALL_PREFIX=/usr \
  11. -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
  12. -DECM_MKSPECS_INSTALL_DIR=/usr/lib/qt6/mkspecs/modules")
  13. def build():
  14. kde6.make()
  15. def install():
  16. kde6.install()