actions.py 457 B

12345678910111213141516171819202122
  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/copyleft/gpl.txt
  6. from pisi.actionsapi import pisitools
  7. from pisi.actionsapi import kde6
  8. from pisi.actionsapi import kde5
  9. NoStrip=["/usr/share"]
  10. def setup():
  11. # kde6.configure("-Dkmix-kf6_KF5_BUILD=ON")
  12. kde5.configure("-Dkmix-kf6_KF5_BUILD=ON")
  13. def build():
  14. kde6.make()
  15. def install():
  16. kde6.install()