2007-06-01 11:44:28 +02:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
|
2010-08-02 20:41:09 +02:00
|
|
|
%:
|
2010-12-20 11:33:56 +02:00
|
|
|
dh $@ --with python2
|
2010-12-20 11:19:37 +02:00
|
|
|
|
2011-01-21 18:24:30 +01:00
|
|
|
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
|
|
|
|
|
2010-12-20 11:19:37 +02:00
|
|
|
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
|
2010-12-20 22:49:16 +02:00
|
|
|
override_dh_auto_test:
|
2010-12-20 11:19:37 +02:00
|
|
|
set -e; \
|
2010-12-20 22:47:36 +02:00
|
|
|
for python in $(shell pyversions -r); do \
|
|
|
|
$$python setup.py test; \
|
|
|
|
done
|
2010-12-20 11:19:37 +02:00
|
|
|
endif
|