actions.py 548 B

12345678910111213141516171819202122232425
  1. #!/usr/bin/env 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 pisitools
  7. from pisi.actionsapi import kde6
  8. def setup():
  9. kde6.configure("-DENABLE_CONSOLE=OFF \
  10. -DENABLE_CLI=OFF \
  11. -DENABLE_DOCS=OFF")
  12. def build():
  13. kde6.make()
  14. def install():
  15. kde6.install()
  16. # Conflicts with kf5
  17. pisitools.removeDir("/usr/share/locale")
  18. pisitools.dodoc("COPYING*", "README*")