#! /usr/bin/make -f CDBS = /usr/share/cdbs/1 include $(CDBS)/class/autotools.mk include $(CDBS)/rules/debhelper.mk ###-------------------------------------------------------------------------- ### General settings. DEB_BUILDDIR = $(CURDIR)/build ###-------------------------------------------------------------------------- ### Correct configuration. DEB_CONFIGURE_EXTRA_FLAGS = \ --with-perlmoddir=/usr/share/perl5 ###-------------------------------------------------------------------------- ### Installation. ### ### Rather than have lots (and /lots/) of little *.install files, we just ### have one big list of everything and split it out as we go. clean::; rm -f debian/*.install $(addprefix install/, $(DEB_ALL_PACKAGES)):: install/%: debian/%.install debian/%.install: debian/inst while read file pkg dir; do \ if [ "$$pkg" = "$*" ]; then \ echo "debian/tmp$$dir/$$file"; \ fi; \ done $@.new && mv $@.new $@ ###----- That's all, folks --------------------------------------------------