summaryrefslogtreecommitdiffstats
path: root/debian/postinst
diff options
context:
space:
mode:
Diffstat (limited to 'debian/postinst')
-rw-r--r--debian/postinst10
1 files changed, 9 insertions, 1 deletions
diff --git a/debian/postinst b/debian/postinst
index aa12961..c762db4 100644
--- a/debian/postinst
+++ b/debian/postinst
@@ -1,7 +1,8 @@
#!/bin/sh
set -e
-install-info --quiet --section "Development" "Development" \
+install-info --quiet --section "The Algorithmic Language Scheme" \
+ "The Algorithmic Language Scheme" \
--description="A Scheme language interpreter" \
/usr/share/info/scm.info.gz
@@ -10,3 +11,10 @@ if [ "$1" = "configure" ]; 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