comparison debian/emacsen-remove.ex @ 78:535075b4d261

Patch from Joachim Metz for debian packaging, and fix for incorrect length on lz decompression.
author Carl Byington <carl@five-ten-sg.com>
date Tue, 10 Jun 2008 14:28:55 -0700
parents
children
comparison
equal deleted inserted replaced
77:87216aefc6df 78:535075b4d261
1 #!/bin/sh -e
2 # /usr/lib/emacsen-common/packages/remove/libpst
3
4 FLAVOR=$1
5 PACKAGE=libpst
6
7 if [ ${FLAVOR} != emacs ]; then
8 if test -x /usr/sbin/install-info-altdir; then
9 echo remove/${PACKAGE}: removing Info links for ${FLAVOR}
10 install-info-altdir --quiet --remove --dirname=${FLAVOR} /usr/info/libpst.info.gz
11 fi
12
13 echo remove/${PACKAGE}: purging byte-compiled files for ${FLAVOR}
14 rm -rf /usr/share/${FLAVOR}/site-lisp/${PACKAGE}
15 fi