summaryrefslogtreecommitdiffstats
path: root/debian/gstreamer-plugin-template.postrm
diff options
context:
space:
mode:
Diffstat (limited to 'debian/gstreamer-plugin-template.postrm')
-rw-r--r--debian/gstreamer-plugin-template.postrm13
1 files changed, 13 insertions, 0 deletions
diff --git a/debian/gstreamer-plugin-template.postrm b/debian/gstreamer-plugin-template.postrm
new file mode 100644
index 00000000..5c2fdf1a
--- /dev/null
+++ b/debian/gstreamer-plugin-template.postrm
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+set -e
+
+if [ "$1" = "remove" ]; then
+ gst-register --gst-mask=0 || true
+ gst-compprep --gst-mask=0 || true
+fi
+
+#DEBHELPER#
+
+exit 0
+