actions.py 541 B

1234567891011121314151617181920
  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 kde5
  7. def setup():
  8. kde5.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/qt5/mkspecs/modules")
  13. def build():
  14. kde5.make()
  15. def install():
  16. kde5.install()