[SCM] composite/master: Added postinst postrm files

mira-guest at users.alioth.debian.org mira-guest at users.alioth.debian.org
Thu Aug 8 01:04:29 UTC 2013


The following commit has been merged in the master branch:
commit 1eddc6f43f34ba5ab58bce1ee40299ef4632ec4c
Author: Jaromír Mikeš <mira.mikes at seznam.cz>
Date:   Thu Aug 8 02:44:31 2013 +0200

    Added postinst postrm files

diff --git a/debian/postinst b/debian/postinst
new file mode 100755
index 0000000..f15c644
--- /dev/null
+++ b/debian/postinst
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+set -e
+
+case "$1" in
+	configure)
+		ldconfig
+	;;
+	*)
+	;;
+esac
+
+#DEBHELPER#
diff --git a/debian/postrm b/debian/postrm
new file mode 100755
index 0000000..ea4bbe7
--- /dev/null
+++ b/debian/postrm
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+set -e
+
+case "$1" in
+	remove)
+		ldconfig
+	;;
+	*)
+	;;
+esac
+
+#DEBHELPER#

-- 
composite packaging



More information about the pkg-multimedia-commits mailing list