summaryrefslogtreecommitdiffstats
path: root/debian/gedit.postinst
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 17:42:51 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 17:42:51 +0000
commit0ffc0ef871f230ef0177113f7e2b77829aaaca98 (patch)
tree450a8acb71eb5ebd3a3369292c5a1eb0301bbc06 /debian/gedit.postinst
parentAdding upstream version 44.2. (diff)
downloadgedit-0ffc0ef871f230ef0177113f7e2b77829aaaca98.tar.xz
gedit-0ffc0ef871f230ef0177113f7e2b77829aaaca98.zip
Adding debian version 44.2-1.debian/44.2-1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/gedit.postinst')
-rw-r--r--debian/gedit.postinst29
1 files changed, 29 insertions, 0 deletions
diff --git a/debian/gedit.postinst b/debian/gedit.postinst
new file mode 100644
index 0000000..ebec24a
--- /dev/null
+++ b/debian/gedit.postinst
@@ -0,0 +1,29 @@
+#!/bin/sh
+
+set -e
+
+case "$1" in
+ configure)
+ # register gedit as a gnome-text-editor in the alternatives system
+ update-alternatives \
+ --install \
+ /usr/bin/gnome-text-editor \
+ gnome-text-editor \
+ /usr/bin/gedit \
+ 50 \
+ --slave \
+ /usr/share/man/man1/gnome-text-editor.1.gz \
+ gnome-text-editor.1.gz \
+ /usr/share/man/man1/gedit.1.gz
+ ;;
+
+ abort-upgrade|abort-remove|abort-deconfigure)
+ ;;
+
+ *)
+ echo "postinst called with unknown argument \`$1'" >&2
+ exit 0
+ ;;
+esac
+
+#DEBHELPER#