~aptdaemon-developers/sessioninstaller/ubuntu-natty

4 by sebi at glatzor
Add postinst and prerm to register the codec installer alternative
1
#!/bin/sh
2
# postinst script for gstreamer0.10-packagekit
3
4
set -e
5
6
update-alternatives --install /usr/bin/gstreamer-codec-install \
7
		    gstreamer-codec-install \
8
		    /usr/bin/gst-install 80 || true
9
10
#DEBHELPER#
11
12
exit 0
13