#!/usr/bin/make -f #export DH_VERBOSE=1 export DEB_CPPFLAGS_MAINT_APPEND = -Dlint export DEB_BUILD_MAINT_OPTIONS=hardening=+all %: dh $@ --with autoreconf --with python2 override_dh_auto_build: dh_auto_build set -e ; cd pyncap && for python in $(shell pyversions -r); do $$python setup.py build; done override_dh_auto_install: dh_auto_install set -e; cd pyncap && for python in $(shell pyversions -r); do $$python setup.py install --root=../debian/python-ncap --install-layout=deb; done