File: emacsen-remove

package info (click to toggle)
python-mode 1%3A1.0-3.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny
  • size: 236 kB
  • ctags: 234
  • sloc: lisp: 3,607; python: 58; sh: 49; makefile: 31
file content (20 lines) | stat: -rw-r--r-- 538 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh -e
# /usr/lib/emacsen-common/packages/remove/python-mode

FLAVOR=$1
PACKAGE=python-mode

if [ ${FLAVOR} = emacs20 ]; then
    exit 0
fi

if [ ${FLAVOR} != emacs ]; then
    if test -x /usr/sbin/install-info-altdir; then
        echo remove/${PACKAGE}: removing Info links for ${FLAVOR}
        install-info-altdir --quiet --remove --dirname=${FLAVOR} \
	    /usr/share/info/python-mode.info.gz
    fi

    echo remove/${PACKAGE}: purging byte-compiled files for ${FLAVOR}
    rm -rf /usr/share/${FLAVOR}/site-lisp/${PACKAGE}
fi