view debian/postrm @ 26122:7d74f109704b

Remove ugly workaround for conflicting dca.h headers, it is no longer necessary now that -I../libavcodec is not in CFLAGS anymore.
author diego
date Mon, 03 Mar 2008 19:40:39 +0000
parents 02309ce6fc22
children
line wrap: on
line source

#!/bin/sh

set -e

if [ "$1" = "purge" ]; then
	if [ -e /usr/share/debconf/confmodule ]; then
		# Source debconf library.
		. /usr/share/debconf/confmodule
		# Remove my changes to the db.
		db_purge
	fi

	if [ -d /etc/mplayer/ ]; then
		rm -rf /etc/mplayer/
	fi
fi

#DEBHELPER#