#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export DEB_LDFLAGS_MAINT_APPEND = -Wl,-z,defs -Wl,--as-needed

export PROG_UNZIP = bunzip2

%:
	dh $@ --with gir,gnome

override_dh_autoreconf:
	./autogen.sh --with-unicode-data=/usr/share/unicode/
	dh_autoreconf --as-needed

override_dh_auto_configure:
	dh_auto_configure -- \
		--enable-gtk-doc \
		--enable-vala \
		--enable-introspection \
		--with-unicode-data=/usr/share/unicode/

override_dh_gnome:
	dh_gnome --no-gnome-versions

override_dh_gencontrol:
	dh_gencontrol -- -VBuilt-Using="$(shell dpkg-query -f '$${source:Package} (= $${source:Version}), ' -W unicode-data)"
