#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS = hardening=+all

include /usr/share/dpkg/default.mk

configure_options = \
	--enable-appchooser \
	--enable-background \
	--enable-lockdown \
	--enable-screencast \
	--enable-screenshot \
	--enable-settings \
	--enable-wallpaper \
	$(NULL)

%:
	dh $@

override_dh_auto_configure:
	dh_auto_configure -- $(configure_options)

override_dh_auto_install:
	dh_auto_install --destdir=debian/tmp
