1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#! /usr/bin/make -f
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
%:
dh $@
override_dh_autoreconf:
dh_autoreconf autoreconf -- -i -f -I m4
override_dh_auto_configure:
dh_auto_configure -- --enable-static --with-pic
# Trac bug https://trac.xiph.org/ticket/1673
override_dh_install:
rm debian/tmp/usr/share/doc/libvorbis-*/doxygen-build.stamp
sed -i "/dependency_libs/ s/'.*'/''/" `find -name '*.la'`
dh_install
override_dh_installchangelogs:
dh_installchangelogs CHANGES
|