File: postinst

package info (click to toggle)
leafpad 0.8.18.1-4
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,732 kB
  • ctags: 435
  • sloc: ansic: 5,022; sh: 3,962; makefile: 93
file content (14 lines) | stat: -rw-r--r-- 365 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

set -e

if [ "$1" = configure ]; then
    # Register leafpad as a gnome-text-editor in the alternatives system.
    update-alternatives \
	--install /usr/bin/gnome-text-editor \
	    gnome-text-editor /usr/bin/leafpad 40 \
	--slave /usr/share/man/man1/gnome-text-editor.1.gz \
	    gnome-text-editor.1.gz /usr/share/man/man1/leafpad.1.gz
fi

#DEBHELPER#