actions.py 818 B

12345678910111213141516171819202122232425262728
  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 kde5
  8. def setup():
  9. kde5.configure("-DWITH_libshp=OFF \
  10. -DWITH_libgps=OFF \
  11. -DWITH_QextSerialPort=OFF \
  12. -DWITH_liblocation=OFF \
  13. -DBUILD_MARBLE_TOOLS=YES \
  14. -DBUILD_TESTING=OFF \
  15. -DBUILD_MARBLE_EXAMPLES=OFF \
  16. -DBUILD_MARBLE_TESTS=OFF \
  17. -DMOBILE=OFF")
  18. def build():
  19. kde5.make()
  20. def install():
  21. kde5.install()
  22. pisitools.dodoc("BUGS", "ChangeLog", "CODING", "COPYING*", "CREDITS", "LICENSES/*", "MANIFESTO.txt", "USECASES")