summaryrefslogtreecommitdiffstats
path: root/debian/postinst
blob: c762db43e30f43d699bffe39f4a7299ec24fc2bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
set -e

install-info --quiet --section "The Algorithmic Language Scheme" \
  "The Algorithmic Language Scheme" \
  --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

# doc base support
if [ "$1" = configure ]; then
    if command -v install-docs >/dev/null 2>&1; then
        install-docs -i /usr/share/doc-base/scm
    fi
fi