17 lines
383 B
Plaintext
Raw Normal View History

#!/usr/bin/make -f
2010-08-02 20:41:09 +02:00
%:
dh $@ --with python2
override_dh_auto_install:
dh_auto_install
ln -s $(shell dpkg-vendor --query Vendor | tr '[:upper:]' '[:lower:]')-distro-info debian/ubuntu-dev-tools/usr/bin/distro-info
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
override_dh_auto_test:
set -e; \
2010-12-20 22:47:36 +02:00
for python in $(shell pyversions -r); do \
$$python setup.py test; \
done
endif