2014-05-23 17:13:05 +02:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
# -*- makefile -*-
|
|
|
|
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
|
|
export DH_VERBOSE=1
|
2014-06-06 05:12:56 +02:00
|
|
|
export DH_OPTIONS += --dbg-package=libpsl0-dbg
|
2014-05-23 17:13:05 +02:00
|
|
|
|
|
|
|
%:
|
|
|
|
dh $@ --with autotools-dev
|
|
|
|
|
|
|
|
override_dh_auto_configure:
|
|
|
|
./autogen.sh
|
|
|
|
dh_auto_configure -- \
|
|
|
|
--enable-gtk-doc \
|
|
|
|
--enable-ld-version-script \
|
|
|
|
--with-packager=Debian \
|
|
|
|
--with-packager-bug-reports=http://bugs.debian.org/ \
|
2014-06-06 05:59:56 +02:00
|
|
|
--with-packager-version="$(DEB_VERSION)" \
|
|
|
|
--with-psl-file=/usr/share/publicsuffix/effective_tld_names.dat \
|
|
|
|
--with-psl-testfile=/usr/share/doc/publicsuffix/examples/test_psl.txt
|
2014-05-23 17:13:05 +02:00
|
|
|
|
|
|
|
#override_dh_auto_clean:
|
|
|
|
# test ! -f Makefile || dh_auto_clean
|
|
|
|
|