aboutsummaryrefslogtreecommitdiff
path: root/deb/remove.debian
diff options
context:
space:
mode:
Diffstat (limited to 'deb/remove.debian')
-rwxr-xr-xdeb/remove.debian17
1 files changed, 17 insertions, 0 deletions
diff --git a/deb/remove.debian b/deb/remove.debian
new file mode 100755
index 0000000..991d208
--- /dev/null
+++ b/deb/remove.debian
@@ -0,0 +1,17 @@
+#!/bin/sh
+PACKAGE=dictionary
+FLAVOUR=$1
+ELCDIR=/usr/share/$FLAVOUR/site-lisp/
+
+SOURCE="connection.el dictionary.el link.el"
+CONFFILE=/etc/$FLAVOUR/site-start.d/50${PACKAGE}.el
+
+case "$FLAVOUR" in
+ emacs) echo "install/$PACKAGE: Ignoring emacs";;
+ *) echo -n "remove/$PACKAGE: Removing for $FLAVOUR..."
+ cd $ELCDIR
+ for i in $SOURCE; do rm -f ${i}c; done
+ rm ${CONFFILE}
+ echo " done."
+ ;;
+esac