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.

27 lines
628 B

  1. #!/usr/bin/make -f
  2. # See debhelper(7) (uncomment to enable)
  3. # output every command that modifies files on the build system.
  4. #export DH_VERBOSE = 1
  5. # Security Hardening
  6. export DEB_BUILD_MAINT_OPTIONS = hardening=+all
  7. override_dh_auto_install:
  8. find src/ -name '*.la' -delete
  9. dh_auto_install
  10. override_dh_auto_configure:
  11. # Whether to have stack-protector is decided by dpkg-buildflags.
  12. # So --disable-ssp here should be safe. See Bug#829498
  13. dh_auto_configure -- \
  14. --enable-shared \
  15. --disable-ssp
  16. override_dh_installchangelogs:
  17. dh_installchangelogs -XChanges
  18. override_dh_missing:
  19. dh_missing --fail-missing
  20. %:
  21. dh $@