blob: 73059e5df966fac16b1b1771574708c0ff6d4f06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install() {
echo "HEVEA is fully functional when other software are installed:"
echo "* A modern LaTeX installation including dvips."
echo "* The ghostscript PostScript interpreter."
echo "* The netpbm image processing package."
echo "However, these are optional and hevea runs without them."
texhash
}
post_upgrade() {
post_install $1
}
|