#!/usr/bin/make -f

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

%:
	dh $@ --with python3 --buildsystem=pybuild

override_dh_auto_build:
	dh_auto_build
	cd debian/msg; make

override_dh_clean:
	cd debian/msg; make clean
	dh_clean

override_dh_install:
	dh_install
	cd debian/msg; make install DESTDIR=../cycle/usr/share/locale/

override_dh_python3:
	dh_python3 --no-ext-rename
