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
645 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. DPKG_EXPORT_BUILDFLAGS = 1
  8. include /usr/share/dpkg/buildflags.mk
  9. override_dh_auto_install:
  10. find src/ -name '*.la' -delete
  11. dh_auto_install
  12. override_dh_auto_configure:
  13. # Whether to have stack-protector is decided by dpkg-buildflags.
  14. # So --disable-ssp here should be safe. See Bug#829498
  15. dh_auto_configure -- \
  16. --enable-shared \
  17. --disable-ssp
  18. override_dh_installchangelogs:
  19. dh_installchangelogs -XChanges
  20. %:
  21. dh $@