File: postinst

package info (click to toggle)
leafpad 0.8.17-5
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,864 kB
  • ctags: 419
  • sloc: ansic: 5,024; sh: 3,962; makefile: 98
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#