diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 12:46:47 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 12:46:47 +0000 |
commit | 520695c73ba4370ec397d986a1c89a0a0587bd9b (patch) | |
tree | 152576117c0c25e41813481a033bbdeff8e8d4f4 /debian/rules | |
parent | Adding upstream version 0.10.0. (diff) | |
download | icingaweb2-module-reporting-520695c73ba4370ec397d986a1c89a0a0587bd9b.tar.xz icingaweb2-module-reporting-520695c73ba4370ec397d986a1c89a0a0587bd9b.zip |
Adding debian version 0.10.0-1.debian/0.10.0-1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..29ae714 --- /dev/null +++ b/debian/rules @@ -0,0 +1,22 @@ +#!/usr/bin/make -f + +MODULE := reporting +DEBDIR := debian/icingaweb2-module-$(MODULE) + +%: + dh ${@} + +override_dh_auto_install: + mkdir -p $(DEBDIR)/usr/share/icingaweb2/modules/$(MODULE) + find . -maxdepth 1 -mindepth 1 -and -not -name debian -and -not -name ".git*" -exec cp -a {} $(DEBDIR)/usr/share/icingaweb2/modules/$(MODULE) \; + + # remove useless file + find $(DEBDIR)/usr/share/icingaweb2/modules/$(MODULE) -name LICENSE -exec rm -f {} \; + + # enable module + mkdir -p $(DEBDIR)/etc/icingaweb2/enabledModules + ln -s /usr/share/icingaweb2/modules/$(MODULE) $(DEBDIR)/etc/icingaweb2/enabledModules/$(MODULE) + +execute_after_dh_installdocs: + rm -f $(DEBDIR)/usr/share/icingaweb2/modules/$(MODULE)/README.md + rm -rf $(DEBDIR)/usr/share/icingaweb2/modules/$(MODULE)/doc |