External, Non-PPA KXStudio Repository
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
431B

  1. #!/usr/bin/make -f
  2. KXSTUDIO_NO_FASTMATH = y
  3. include /usr/share/dpkg/kxstudio.mk
  4. WAF = python3 ./waf
  5. override_dh_auto_configure:
  6. $(WAF) configure \
  7. --static \
  8. --no-shared \
  9. --prefix=/opt/kxstudio \
  10. --strict \
  11. --test
  12. override_dh_auto_build:
  13. $(WAF)
  14. override_dh_auto_clean:
  15. $(WAF) clean || true
  16. override_dh_auto_install:
  17. $(WAF) install --destdir=$(CURDIR)/debian/tmp
  18. override_dh_auto_test:
  19. $(WAF) test
  20. %:
  21. dh $@