~ubuntu-branches/ubuntu/oneiric/totem/oneiric-updates

« back to all changes in this revision

Viewing changes to debian/totem-xine.prerm

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2005-03-10 19:14:51 UTC
  • Revision ID: james.westby@ubuntu.com-20050310191451-ap25o8z1dskowil3
Tags: 0.100-5
* Rebuilt for the libhowl transition (Closes: #298872).
* debian/control.in:
  - updated the gnome-vfs requirements.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
# prerm script for totem-xine
 
3
#
 
4
# see: dh_installdeb(1)
 
5
 
 
6
set -e
 
7
 
 
8
case "$1" in
 
9
    remove|upgrade|deconfigure)
 
10
        update-alternatives --quiet --remove gnome-video-thumbnailer /usr/bin/totem-video-thumbnailer
 
11
        ;;
 
12
    failed-upgrade)
 
13
        ;;
 
14
 
 
15
    *)
 
16
        echo "prerm called with unknown argument \`$1'" >&2
 
17
        exit 1
 
18
        ;;
 
19
         
 
20
esac
 
21
 
 
22
#DEBHELPER#
 
23
 
 
24
exit 0