aboutsummaryrefslogtreecommitdiffstats
path: root/debian/postinst
blob: aa12961613cb32766ecca9cae4537ab6a38af1f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
set -e

install-info --quiet --section "Development" "Development" \
  --description="A Scheme language interpreter" \
  /usr/share/info/scm.info.gz

if [ "$1" = "configure" ]; then
	if [ -d /usr/doc -a ! -e /usr/doc/scm -a -d /usr/share/doc/scm ]; then
		ln -sf ../share/doc/scm /usr/doc/scm
	fi
fi