File: rules

package info (click to toggle)
libdist-zilla-plugin-git-perl 2.045-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 704 kB
  • sloc: perl: 1,267; makefile: 11
file content (17 lines) | stat: -rwxr-xr-x 369 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/make -f

SKIP_TESTS = $(shell cat debian/tests/pkg-perl/smoke-skip)
TEST_FILES = $(filter-out $(SKIP_TESTS), $(wildcard t/*.t))

%:
	dh $@

override_dh_clean:
	dh_clean
	rm -rf tmp/

override_dh_auto_test:
	GIT_AUTHOR_EMAIL="pkg-perl-maintainers@lists.alioth.debian.org" \
	GIT_AUTHOR_NAME="Debian Perl Group" \
	dh_auto_test -- TEST_FILES="$(TEST_FILES)"