blob: 991d2081c8b82565910a1e8bc9f1a0e404996e36 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
|