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
|
#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
%:
dh $@
override_dh_auto_configure:
dh_auto_configure -- \
--disable-docs \
--without-vm-dir \
--docdir='$${datarootdir}/doc/bbdb3' \
--with-lispdir='$${datadir}/emacs/site-lisp/bbdb3'
override_dh_auto_build:
dh_auto_build -- pkgdatadir='$${datarootdir}/bbdb3'
override_dh_auto_install:
dh_auto_install -- pkgdatadir='$${datarootdir}/bbdb3'
execute_after_dh_auto_install:
@echo "Deleting compiled elisp from installation tree, as compilation"
@echo "is done at install time by the emacsen infrastructure."
find debian/bbdb3 -name '*.elc' -print -delete
@echo "dh_installchangelog installs this later with standard name"
-rm --verbose debian/bbdb3/usr/share/doc/bbdb3/ChangeLog
@echo "copy of GPLv3 is not needed due to pointer in .../copyright"
-rm --verbose debian/bbdb3/usr/share/doc/bbdb3/COPYING
|