File: rules

package info (click to toggle)
php-codesniffer 3.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 7,516 kB
  • sloc: php: 50,399; xml: 10,688; pascal: 4,898; makefile: 14; sh: 6
file content (18 lines) | stat: -rwxr-xr-x 520 bytes parent folder | download
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