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.

29 lines
493B

  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. --prefix=/usr \
  8. --libdir=/usr/lib/$(DEB_TARGET_MULTIARCH) \
  9. --mandir=/usr/share/man \
  10. --strict
  11. override_dh_auto_build:
  12. $(WAF)
  13. override_dh_auto_clean:
  14. $(WAF) clean || true
  15. override_dh_auto_install:
  16. $(WAF) install --destdir=$(CURDIR)/debian/jalv
  17. override_dh_installchangelogs:
  18. dh_installchangelogs NEWS
  19. %:
  20. dh $@