#!/usr/bin/make -f
%:
	dh $@

override_dh_auto_clean:
	rm -f schemas/gschemas.compiled
	dh_auto_clean

override_dh_auto_build:
	for po in locale/*/LC_MESSAGES/*.po; do \
		msgfmt -cv -o $${po%.po}.mo $$po; \
	done
	glib-compile-schemas --targetdir=schemas schemas
	dh_auto_build