File: emacsen-remove

package info (click to toggle)
scala-mode-el 20111005-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 164 kB
  • sloc: lisp: 1,088; makefile: 67; sh: 25
file content (8 lines) | stat: -rw-r--r-- 207 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
#!/bin/sh -e
FLAVOR=$1
PACKAGE=scala-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