1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
#!/usr/bin/make -f
%:
dh $@ --buildsystem=phppear --with phppear
override_dh_auto_configure:
dh_auto_configure -O--buildsystem=phppear
sed -i -r -e '/(LICENCE|README|CONTRIBUTING)/d' \
-e '/" role="doc" /d' \
-e 's/pre-commit" role="script"/pre-commit" role="doc"/' */package.xml
override_dh_auto_test:
ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS)))
cd PHP_CodeSniffer-*/tests && \
phpunit -d include_path=".:/usr/share/php:.." --configuration ../phpunit.xml.dist
else
@echo "** tests disabled"
endif
|