File: emacsen-remove.in

package info (click to toggle)
w3m-el 1.4.632%2B0.20181112-9
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 5,856 kB
  • sloc: lisp: 46,626; sh: 412; makefile: 379
file content (22 lines) | stat: -rw-r--r-- 469 bytes parent folder | download
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=w3m

case $FLAVOR in
    *xemacs*|emacs24|emacs23|emacs22|emacs21|emacs20|emacs19|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