File: emacsen-remove

package info (click to toggle)
lua-mode 20060625-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 88 kB
  • ctags: 96
  • sloc: lisp: 810; sh: 38; makefile: 33
file content (9 lines) | stat: -rw-r--r-- 256 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
#!/bin/sh -e
# /usr/lib/emacsen-common/packages/remove/lua-mode
FLAVOR=$1
PACKAGE=lua-mode
if [ ${FLAVOR} != emacs ]; then
    echo remove/${PACKAGE}: purging byte-compiled files for ${FLAVOR}
    rm -rf /usr/share/${FLAVOR}/site-lisp/${PACKAGE}
fi
exit 0