~ubuntu-branches/debian/experimental/smplayer/experimental

« back to all changes in this revision

Viewing changes to debian-rvm/emacsen-remove.ex

  • Committer: Bazaar Package Importer
  • Author(s): Maia Kozheva
  • Date: 2009-01-03 17:08:06 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090103170806-eodntb2slv6g2pb6
Tags: 0.6.6-0ubuntu1
* The "just before FF" release.
* New upstream release.
* debian/control: Bumped Standards-Version to 3.8.0.
* debian/copyright: Changed (C) to © to fix Lintian warning.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh -e
2
 
# /usr/lib/emacsen-common/packages/remove/smplayer
3
 
 
4
 
FLAVOR=$1
5
 
PACKAGE=smplayer
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/smplayer.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