File: mmm-mode.emacsen-remove

package info (click to toggle)
mmm-mode 0.5.4-2
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 784 kB
  • ctags: 307
  • sloc: lisp: 3,551; sh: 558; makefile: 42
file content (12 lines) | stat: -rw-r--r-- 264 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh -e

FLAVOR="$1"

echo "install/mmm-mode: Handling removal of emacsen flavor ${FLAVOR}"

if [ "${FLAVOR}" != "emacs" ]; then
  echo "install/mmm-mode: purging byte-compiled files for ${FLAVOR}"
  rm -rf /usr/share/${FLAVOR}/site-lisp/mmm-mode
fi

exit 0;