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
|
#!/usr/bin/make -f
MODULE := fileshipper
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*" -and -not -name ".pc" -exec cp -a {} $(DEBDIR)/usr/share/icingaweb2/modules/$(MODULE) \;
override_dh_fixperms:
dh_fixperms
find debian -name '*.php' -exec chmod -x {} +
# remove useless files
find $(DEBDIR)/usr/share/icingaweb2/modules/$(MODULE) -name LICENSE -exec rm -f {} \;
# move config file
mkdir -p $(DEBDIR)/etc/icingaweb2/modules/$(MODULE)
cp debian/local/config.ini $(DEBDIR)/etc/icingaweb2/modules/$(MODULE)/
mkdir -p $(DEBDIR)/var/lib/icingaweb2/modules/fileshipper/import
override_dh_installdocs:
dh_installdocs
rm -f $(DEBDIR)/usr/share/doc/icingaweb2-module-$(MODULE)/02-Installation.md
# enable module
mkdir -p $(DEBDIR)/etc/icingaweb2/enabledModules
ln -s /usr/share/icingaweb2/modules/$(MODULE) $(DEBDIR)/etc/icingaweb2/enabledModules/$(MODULE)
|