#!/usr/bin/make -f
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

# Force UTF8 to workaround doc build error
export LC_ALL=C.UTF-8

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

%:
	dh $@ --with gir

override_dh_auto_configure:
	dh_auto_configure -- \
		--libexecdir=/usr/libexec/cinnamon \
		-D docs=true \
		-D deprecated_warnings=false

# workaround for fix lmde4 build
override_dh_dwz:


override_dh_strip:
	dh_strip --dbg-package=cinnamon-dbg
