2014-05-23 17:13:05 +02:00
|
|
|
#!/usr/bin/make -f
|
2016-07-14 11:25:35 +02:00
|
|
|
|
2016-08-04 23:57:51 +02:00
|
|
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
|
|
|
|
2014-05-23 17:13:05 +02:00
|
|
|
%:
|
2016-08-05 01:21:04 +02:00
|
|
|
dh $@ --with autoreconf
|
2014-05-23 17:13:05 +02:00
|
|
|
|
2016-07-14 11:25:35 +02:00
|
|
|
override_dh_autoreconf-arch:
|
2015-07-12 22:15:13 +02:00
|
|
|
dh_autoreconf ./autogen.sh
|
2015-07-12 19:56:36 +02:00
|
|
|
|
2016-07-14 11:25:35 +02:00
|
|
|
override_dh_auto_configure-arch:
|
2014-05-23 17:13:05 +02:00
|
|
|
dh_auto_configure -- \
|
2014-07-04 16:54:17 +02:00
|
|
|
--enable-builtin=libicu \
|
2014-05-23 17:13:05 +02:00
|
|
|
--enable-gtk-doc \
|
|
|
|
--enable-ld-version-script \
|
2014-07-04 16:54:17 +02:00
|
|
|
--enable-runtime=libicu \
|
2014-05-23 17:13:05 +02:00
|
|
|
--with-packager=Debian \
|
2014-06-12 17:30:05 +02:00
|
|
|
--with-packager-bug-reports=https://bugs.debian.org/ \
|
2014-06-06 05:59:56 +02:00
|
|
|
--with-packager-version="$(DEB_VERSION)" \
|
2016-07-05 17:36:53 +02:00
|
|
|
--with-psl-file=/usr/share/publicsuffix/public_suffix_list.dat \
|
2014-06-06 05:59:56 +02:00
|
|
|
--with-psl-testfile=/usr/share/doc/publicsuffix/examples/test_psl.txt
|
2016-08-04 23:56:01 +02:00
|
|
|
|
|
|
|
override_dh_installchangelogs:
|
|
|
|
dh_installchangelogs NEWS
|
2016-08-05 01:21:04 +02:00
|
|
|
|
|
|
|
# do nothing during an arch-independent build
|
|
|
|
override_dh_autoreconf-indep:
|
|
|
|
override_dh_auto_configure-indep:
|
|
|
|
override_dh_auto_build-indep:
|
|
|
|
|