File: emacsen-remove.in

package info (click to toggle)
mew-beta 7.0.50~6.8%2B0.20221129-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 6,408 kB
  • sloc: lisp: 37,375; ansic: 3,608; haskell: 569; sh: 443; makefile: 415; ruby: 310; perl: 61
file content (22 lines) | stat: -rw-r--r-- 441 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#! /bin/sh
# /usr/lib/emacsen-common/packages/remove/@PACKAGE@
set -e

FLAVOR=$1
PACKAGE=@PACKAGE@
PKGSNAME=mew

case $FLAVOR in
    *xemacs*|emacs2[0-5]|emacs1?|mule2)
    exit 0
    ;;
esac

ELCDIR=/usr/share/$FLAVOR/site-lisp/$PKGSNAME

echo "remove/$PACKAGE: purging byte-compiled files for $FLAVOR"
rm -rf "$ELCDIR"
if [ -L "/etc/$FLAVOR/site-start.d/50$PACKAGE.el" ]; then
    rm -f "/etc/$FLAVOR/site-start.d/50$PACKAGE.el"
fi
exit 0