File: haml-elisp.emacsen-remove

package info (click to toggle)
haml-elisp 1%3A3.1.0-3.1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 192 kB
  • ctags: 192
  • sloc: lisp: 2,110; sh: 40; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 294 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh -e

FLAVOR="$1"
SRC_FILE="haml-mode.el"

echo "install/haml-elisp: Handling removal of emacsen flavor ${FLAVOR}"

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

exit 0;