diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 12:43:30 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 12:43:30 +0000 |
commit | 8be59d33324a5ecda4ca134f1a0d83b2577669fc (patch) | |
tree | beefc62cae82111e4617e86890020b96638b279a /debian/rules | |
parent | Adding upstream version 1.3.0. (diff) | |
download | icingaweb2-module-eventdb-8be59d33324a5ecda4ca134f1a0d83b2577669fc.tar.xz icingaweb2-module-eventdb-8be59d33324a5ecda4ca134f1a0d83b2577669fc.zip |
Adding debian version 1.3.0-3.debian/1.3.0-3debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..712c976 --- /dev/null +++ b/debian/rules @@ -0,0 +1,20 @@ +#!/usr/bin/make -f + +MODULE := eventdb +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 files + rm -f $(DEBDIR)/usr/share/icingaweb2/modules/$(MODULE)/COPYING + rm -f $(DEBDIR)/usr/share/icingaweb2/modules/$(MODULE)/AUTHORS + rm -f $(DEBDIR)/usr/share/icingaweb2/modules/$(MODULE)/.mailmap + + # enable module + mkdir -p $(DEBDIR)/etc/icingaweb2/enabledModules + ln -s /usr/share/icingaweb2/modules/$(MODULE) $(DEBDIR)/etc/icingaweb2/enabledModules/$(MODULE) |