#!/usr/bin/make -f

include /usr/share/dpkg/default.mk
include /usr/share/python/python.mk

configure_flags += \
		--disable-silent-rules \
		$(NULL)

%:
	dh $@ --with python3 --without pysupport

override_dh_python3:
	dh_python3
	dh_python3 /usr/lib/$(DEB_TARGET_MULTIARCH)/pitivi/python/pitivi

override_dh_auto_configure:
	dh_auto_configure -- $(configure_flags)

override_dh_auto_test:

