1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
#!/usr/bin/make -f
# -*- makefile -*-
export PYBUILD_NAME=django-captcha
%:
dh $@ --with python2,python3 --buildsystem=pybuild
.PHONY: override_dh_auto_test
override_dh_auto_test:
dh_auto_test -- --system=custom --test-args="cd testproject && {interpreter} manage.py test captcha"
override_dh_install:
dh_install
find debian/python-django-captcha -name Vera.ttf -exec \
ln -sf /usr/share/fonts/truetype/ttf-bitstream-vera/Vera.ttf {} \;;
find debian/python3-django-captcha -name Vera.ttf -exec \
ln -sf /usr/share/fonts/truetype/ttf-bitstream-vera/Vera.ttf {} \;;
|