source: projects/specs/trunk/l/lua-mode/lua-mode-remove.sh @ 3458

Revision 3458, 609 bytes checked in by munepi, 13 years ago (diff)

NEW: added lua-mode

  • Property svn:executable set to *
Line 
1#!/bin/sh -e
2# /usr/lib/emacsen-common/packages/remove/lua-mode
3
4FLAVOR=$1
5PACKAGE=lua-mode
6STARTDIR=/etc/${FLAVOR}/site-start.d
7STARTFILE="${PACKAGE}-init.el"
8
9if [ "X${FLAVOR}" = "X" ]; then
10    echo Need argument to determin FLAVOR of emacs;
11    exit 1
12fi
13
14if [ "X${PACKAGE}" = "X" ]; then
15    echo Internal error: need package name;
16    exit 1;
17fi
18
19ELCDIR=/usr/share/${FLAVOR}/site-lisp/${PACKAGE}
20
21case "${FLAVOR}" in
22    *)
23    echo -n "remove/${PACKAGE}: Handling removal of emacsen flavor ${FLAVOR} ..."
24    rm -rf ${ELCDIR}
25    rm -f ${STARTDIR}/95${STARTFILE}*
26    echo " done."
27    ;;
28esac
29
30exit 0
Note: See TracBrowser for help on using the repository browser.