File: emacsen-remove

package info (click to toggle)
lua-mode 20151025-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 240 kB
  • ctags: 145
  • sloc: lisp: 2,533; makefile: 34; sh: 26
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