aboutsummaryrefslogtreecommitdiffstats
path: root/debian/postinst
blob: 5ce83d580d8dda6b79b65b56862e6eefbaffac30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/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

install-info --quiet --section "The Algorithmic Language Scheme" \
  "The Algorithmic Language Scheme" \
  --description="SCM Language X Interface" \
  /usr/share/info/Xlibscm.info.gz

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