diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 16:24:28 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 16:24:28 +0000 |
commit | 2e7b40c11f44d02bd96eaef714a55c9198d680d8 (patch) | |
tree | b8591f10d3f43153a5d2245a997c2a956c85f709 /debian/rules | |
parent | Adding upstream version 1:2.11. (diff) | |
download | bash-completion-2e7b40c11f44d02bd96eaef714a55c9198d680d8.tar.xz bash-completion-2e7b40c11f44d02bd96eaef714a55c9198d680d8.zip |
Adding debian version 1:2.11-8.debian/1%2.11-8
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..ab839e4 --- /dev/null +++ b/debian/rules @@ -0,0 +1,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 $@ |