File: rules

package info (click to toggle)
bash-completion 1%3A2.11-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 6,352 kB
  • sloc: python: 8,225; makefile: 1,762; sh: 275; perl: 85; xml: 29; ansic: 7; ruby: 2
file content (33 lines) | stat: -rwxr-xr-x 736 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/make -f
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

include /usr/share/dpkg/pkg-info.mk

REMOVE=adb bts nmcli hwclock ionice mock modules mount rtcwake dmesg renice umount

override_dh_compress:
	dh_compress -Xcompletions

override_dh_installchangelogs:
	dh_installchangelogs CHANGES

dh_bash-completion.1: debian/extra/debhelper/dh_bash-completion
	pod2man \
		--center "Bash-Completion Debhelper" \
		--release $(DEB_VERSION_UPSTREAM) \
		$< > debian/extra/debhelper/$@

override_dh_install: dh_bash-completion.1
	dh_install
	for i in $(REMOVE); do \
	    rm -vf debian/bash-completion/usr/share/bash-completion/completions/$$i; \
	done

override_dh_auto_test:
	# nothing

%:
	dh $@