File: emacsen-remove

package info (click to toggle)
windows-el 2.55-1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 204 kB
  • sloc: lisp: 2,067; sh: 33; makefile: 31
file content (14 lines) | stat: -rw-r--r-- 273 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh -e

FLAVOR=$1
PACKAGE=windows

echo remove/${PACKAGE}: Handling removal of emacsen flavor ${FLAVOR}

if [ ${FLAVOR} != emacs ]
then
    echo emacsen-common: purging byte-compiled files for ${FLAVOR}
    rm -rf /usr/share/${FLAVOR}/site-lisp/${PACKAGE}
fi

exit 0