aboutsummaryrefslogtreecommitdiff
path: root/debian/gmm.postinst
diff options
context:
space:
mode:
Diffstat (limited to 'debian/gmm.postinst')
-rw-r--r--debian/gmm.postinst11
1 files changed, 11 insertions, 0 deletions
diff --git a/debian/gmm.postinst b/debian/gmm.postinst
new file mode 100644
index 0000000..335f2dd
--- /dev/null
+++ b/debian/gmm.postinst
@@ -0,0 +1,11 @@
+#!/bin/sh -e
+
+if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-remove" ] ; then
+ update-alternatives --install /usr/bin/gmm \
+ gmm /usr/bin/gmm-tk 40
+
+ update-alternatives --install /usr/bin/gmm \
+ gmm /usr/bin/gmm-gtk 50
+fi
+
+#DEBHELPER#
bgstack15