~ubuntu-branches/ubuntu/feisty/pymacs/feisty

« back to all changes in this revision

Viewing changes to debian/pymacs-elisp.emacsen-remove

  • Committer: Bazaar Package Importer
  • Author(s): Alexandre Fayolle
  • Date: 2006-06-15 15:21:07 UTC
  • mfrom: (2.1.2 etch)
  • Revision ID: james.westby@ubuntu.com-20060615152107-m0nv8dm5uygn8lsb
Tags: 0.22-6
Updated to new Python policy

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh -e
2
 
 
3
 
FLAVOR=$1
4
 
PACKAGE=pymacs-elisp
5
 
 
6
 
if [ ${FLAVOR} != emacs ]; then
7
 
    if test -x /usr/sbin/install-info-altdir; then
8
 
        echo remove/${PACKAGE}: removing Info links for ${FLAVOR}
9
 
        install-info-altdir --quiet --remove --dirname=${FLAVOR} /usr/info/${PACKAGE}.info.gz
10
 
    fi
11
 
 
12
 
    echo remove/${PACKAGE}: purging byte-compiled files for ${FLAVOR}
13
 
    rm -rf /usr/share/${FLAVOR}/site-lisp/${PACKAGE}
14
 
fi