aboutsummaryrefslogtreecommitdiffstats
path: root/debian/emacsen-remove.ex
diff options
context:
space:
mode:
authorJonathan McCrohan <jmccrohan@gmail.com>2012-02-20 00:19:34 +0000
committerJonathan McCrohan <jmccrohan@gmail.com>2012-02-20 00:19:34 +0000
commit9644609c9b9c3eab6e2c302359ac046e8ae591ad (patch)
treed83b5667af5c66df3447f311f49101cb2dd420cd /debian/emacsen-remove.ex
parent218f7efb7e35fc2871dfbf184fdc0f0f81f86858 (diff)
downloadverteco-9644609c9b9c3eab6e2c302359ac046e8ae591ad.tar.gz
dh_make initial
Diffstat (limited to '')
-rw-r--r--debian/emacsen-remove.ex15
1 files changed, 15 insertions, 0 deletions
diff --git a/debian/emacsen-remove.ex b/debian/emacsen-remove.ex
new file mode 100644
index 0000000..c1b5574
--- /dev/null
+++ b/debian/emacsen-remove.ex
@@ -0,0 +1,15 @@
+#!/bin/sh -e
+# /usr/lib/emacsen-common/packages/remove/modbuslog
+
+FLAVOR=$1
+PACKAGE=modbuslog
+
+if [ ${FLAVOR} != emacs ]; then
+ if test -x /usr/sbin/install-info-altdir; then
+ echo remove/${PACKAGE}: removing Info links for ${FLAVOR}
+ install-info-altdir --quiet --remove --dirname=${FLAVOR} /usr/share/info/modbuslog.info.gz
+ fi
+
+ echo remove/${PACKAGE}: purging byte-compiled files for ${FLAVOR}
+ rm -rf /usr/share/${FLAVOR}/site-lisp/${PACKAGE}
+fi