actions.py 863 B

1234567891011121314151617181920212223242526272829
  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 pisitools
  7. from pisi.actionsapi import kde6
  8. from pisi.actionsapi import kde5
  9. def setup():
  10. kde6.configure("-DWITH_libshp=OFF \
  11. -DWITH_libgps=OFF \
  12. -DWITH_QextSerialPort=OFF \
  13. -DWITH_liblocation=OFF \
  14. -DBUILD_marble-kf6_TOOLS=YES \
  15. -DBUILD_TESTING=OFF \
  16. -DBUILD_marble-kf6_EXAMPLES=OFF \
  17. -DBUILD_marble-kf6_TESTS=OFF \
  18. -DMOBILE=OFF")
  19. def build():
  20. kde6.make()
  21. def install():
  22. kde6.install()
  23. pisitools.dodoc("BUGS", "ChangeLog", "CODING", "COPYING*", "CREDITS", "LICENSES/*", "MANIFESTO.txt", "USECASES")