~didrocks/totem/ubuntu

« back to all changes in this revision

Viewing changes to debian/totem-gstreamer.prerm

  • Committer: Didier Roche
  • Date: 2009-01-06 16:54:42 UTC
  • Revision ID: didrocks@ubuntu.com-20090106165442-6kjg99vrbyiddwrg
init totem package in bzr

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
set -e
 
3
 
 
4
FLAVOUR=gstreamer
 
5
 
 
6
if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ] ; then
 
7
        update-alternatives --quiet --remove gnome-video-thumbnailer \
 
8
                /usr/bin/totem-${FLAVOUR}-video-thumbnailer
 
9
        update-alternatives --quiet --remove totem /usr/bin/totem-${FLAVOUR}
 
10
fi
 
11
 
 
12
#DEBHELPER#
 
13
 
 
14
exit 0