File indexing completed on 2024-05-12 05:39:33

0001 #!/bin/sh -e
0002 # /usr/lib/emacsen-common/packages/remove/rolisteam
0003 
0004 FLAVOR=$1
0005 PACKAGE=rolisteam
0006 
0007 if [ ${FLAVOR} != emacs ]; then
0008     if test -x /usr/sbin/install-info-altdir; then
0009         echo remove/${PACKAGE}: removing Info links for ${FLAVOR}
0010         install-info-altdir --quiet --remove --dirname=${FLAVOR} /usr/share/info/rolisteam.info.gz
0011     fi
0012 
0013     echo remove/${PACKAGE}: purging byte-compiled files for ${FLAVOR}
0014     rm -rf /usr/share/${FLAVOR}/site-lisp/${PACKAGE}
0015 fi