File: rules

package info (click to toggle)
password-store 1.7.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 592 kB
  • sloc: sh: 1,441; python: 629; ruby: 383; lisp: 191; makefile: 82; perl: 46
file content (23 lines) | stat: -rwxr-xr-x 460 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/make -f
%:
	dh $@

override_dh_auto_test:
	set -e; \
	tmp="$$(mktemp -d)"; \
	code=0; \
	dh_auto_test -- PASS_TEST_OPTS="--root=$$tmp" || code="$$?"; \
	rm -rf "$$tmp"; \
	exit "$$code"

override_dh_auto_install:
	$(MAKE) DESTDIR=$$(pwd)/debian/pass PREFIX=/usr \
		ZSHCOMPDIR=/usr/share/zsh/vendor-completions \
		WITH_ALLCOMP=yes \
		install

override_dh_installexamples:
	dh_installexamples -X.gitignore

override_dh_compress:
	dh_compress -X.el