1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
#!/bin/sh
set -e
#echo "Stage postinst" $1
# Source debconf library.
[ -e /usr/share/debconf/confmodule ] && . /usr/share/debconf/confmodule
db_get python-sympy-doc/live-sympy
# the variable $RET contains either 'true' or 'false'
# let us configure the documentation accordingly
[ -r /usr/share/doc/python-sympy-doc/sympy-live.sh ] && sh /usr/share/doc/python-sympy-doc/sympy-live.sh "$RET"
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0
|