File: remove

package info (click to toggle)
debview 1.7-1
  • links: PTS
  • area: main
  • in suites: slink
  • size: 88 kB
  • ctags: 28
  • sloc: lisp: 325; sh: 68; makefile: 40
file content (13 lines) | stat: -rwxr-xr-x 380 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
# /usr/lib/emacsen-common/packages/remove/debview
# [ This particular script hasn't been tested either, so be careful. ]
set -e

FLAVOR=$1
echo remove/debview: Handling removal of emacsen flavor ${FLAVOR}

if [ ${FLAVOR} != emacs ]; then
    echo emacsen-common: purging byte-compiled files for ${FLAVOR}
    rm -f /usr/share/${FLAVOR}/site-lisp/debview/*.elc
fi
exit 0