aboutsummaryrefslogtreecommitdiff
path: root/debian/emacsen-remove.ex
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2012-06-26 16:35:14 -0300
committerSilvio Rhatto <rhatto@riseup.net>2012-06-26 16:35:14 -0300
commit80dbf12dad7500caf6fb6336a68812f28e147f8f (patch)
tree1c7eeee16684af445b58830fca32f4f923530058 /debian/emacsen-remove.ex
parent80056e1a52b9528701fb265f880c819dc92641aa (diff)
downloadkeyringer-80dbf12dad7500caf6fb6336a68812f28e147f8f.tar.gz
keyringer-80dbf12dad7500caf6fb6336a68812f28e147f8f.tar.bz2
More debian specifics from dh_makedebian_keyringer_0.1-1
Diffstat (limited to 'debian/emacsen-remove.ex')
-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..62b90e5
--- /dev/null
+++ b/debian/emacsen-remove.ex
@@ -0,0 +1,15 @@
+#!/bin/sh -e
+# /usr/lib/emacsen-common/packages/remove/keyringer
+
+FLAVOR=$1
+PACKAGE=keyringer
+
+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/keyringer.info.gz
+ fi
+
+ echo remove/${PACKAGE}: purging byte-compiled files for ${FLAVOR}
+ rm -rf /usr/share/${FLAVOR}/site-lisp/${PACKAGE}
+fi