#!/usr/bin/make -f

export PYBUILD_NAME := timekpr

%:
	dh $@ --with python3

execute_after_dh_clean:
	find . -name "*.pyc" -delete
	find . -name "__pycache__" -delete
	#doc/update.sh

override_dh_gencontrol:
	dh_gencontrol -- \
	  -Vlib:Depends=$(shell dpkg-query -W -f '$${Depends}' libgtk-3-dev \
			| sed -E 's/.*(libgtk-3-[[:digit:]][[:alnum:].-]*).*/\1/')
