File: rules

package info (click to toggle)
php-zeta-console-tools 1.7-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,680 kB
  • sloc: php: 14,911; xml: 3,111; makefile: 16; sh: 7
file content (19 lines) | stat: -rwxr-xr-x 396 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/make -f
%:
	dh $@ --with phpcomposer

override_dh_auto_build:
	dh_auto_build
	phpab \
		--output src/autoload.php \
		--template debian/autoload.php.tpl \
		src
	mkdir --parent vendor
	cp debian/autoload_tests.php vendor/autoload.php

override_dh_auto_test:
ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS)))
	phpunit --exclude-group interactive
else
	@echo "** tests disabled"
endif