File: rules

package info (click to toggle)
libsvn-web-perl 0.63-4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 736 kB
  • sloc: perl: 1,987; sh: 73; makefile: 11
file content (17 lines) | stat: -rwxr-xr-x 372 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/make -f

%:
	dh $@

override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
	cp -a t t.bak
	dh_auto_test -- LC_ALL=C.UTF-8
	rm -rf t
	mv t.bak t
endif

# SVN::Web::Test is useless outside the source directory,
# so don't ship it in the binary package at all
execute_after_dh_auto_install:
	find debian/$(PACKAGE) -path '*/SVN/Web/Test.pm' -delete