1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
  
     | 
    
      #!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
DEB_VERSION := $(shell dpkg-parsechangelog --show-field=Version)
%:
	dh $@ --with python3 --buildsystem=pybuild
override_dh_auto_install:
	dh_auto_install
	# upstream provides a way to patch in the distro
	# version by replacing @@PACKAGED_VERSION@@ in version.py
	for f in $$(find $(CURDIR)/debian/ -type f -name version.py); do [ -f "$$f" ] || continue; sed -i 's,@@PACKAGED_VERSION@@,$(DEB_VERSION),' "$$f"; done
 
     |