File: postinst

package info (click to toggle)
elvis-tiny 1.4-11
  • links: PTS
  • area: main
  • in suites: potato
  • size: 712 kB
  • ctags: 1,052
  • sloc: ansic: 13,832; makefile: 227; sh: 27
file content (21 lines) | stat: -rw-r--r-- 468 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#! /bin/sh

case "$1" in
	configure)
		;;
	abort-upgrade|abort-remove|abort-deconfigure)
		exit 0
		;;
esac
umask 022

update-alternatives --install /usr/bin/vi vi /usr/bin/elvis-tiny 10 \
  --slave /usr/share/man/man1/vi.1.gz vi.1.gz /usr/share/man/man1/elvis-tiny.1.gz

# Compatibility symlinks into /usr/doc
if [ -d /usr/doc -a ! -e /usr/doc/elvis-tiny \
        -a -d /usr/share/doc/elvis-tiny ]
then
        ln -sf ../share/doc/elvis-tiny /usr/doc/elvis-tiny
fi