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.

33 lines
576B

  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. --no-bindings \
  10. --prefix=/opt/kxstudio \
  11. --default-lv2-path='~/.lv2:/usr/lib/$(DEB_HOST_MULTIARCH)/lv2:/usr/lib/lv2:/usr/local/lib/lv2' \
  12. --mandir=/usr/share/man \
  13. --strict \
  14. --test
  15. override_dh_auto_build:
  16. $(WAF)
  17. override_dh_auto_clean:
  18. $(WAF) clean || true
  19. override_dh_auto_install:
  20. $(WAF) install --destdir=$(CURDIR)/debian/tmp
  21. override_dh_auto_test:
  22. $(WAF) test
  23. %:
  24. dh $@