#!/usr/bin/make -f DEST_DIR=$(CURDIR)/debian/tmp/usr %: dh $@ override_dh_install: # remove man page with not really interesting doc for i in Net MDKCommon LevelEditor Stuff ; do \ rm $(DEST_DIR)/share/man/man3/Games::FrozenBubble::$$i.3pm* ; \ done # copy icons to correct destinations cd share/icons && \ for i in frozen-bubble-icon-*.png; do \ size=$${i%.png}; size=$${size#frozen-bubble-icon-}; \ dirname=../../debian/tmp/usr/share/icons/hicolor/"$$size"/apps; \ mkdir -p $$dirname; \ cp "$$i" $$dirname/frozen-bubble.png; \ done dh_install