postinst is in scm 5e5-3.2.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #!/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
rm -f /usr/lib/scm/slibcat
/usr/bin/scm -c "(require 'new-catalog)"
if [ -e /usr/lib/scm/slibcat ] ; then
chmod 644 /usr/lib/scm/slibcat
fi
|