blob: 502b240d6d9950e89fafe1a269eda71eac84846c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/bin/sh
#
# $NetBSD: INSTALL,v 1.1 2001/10/31 23:28:04 zuntum Exp $
#
case $2 in
PRE-INSTALL)
;;
POST-INSTALL)
cat <<EOT
---------------------------------------------------------------------------
You may consider running ${PKG_PREFIX}/bin/texconfig to adjust for your
local environment, e.g. configure font generation to use a temporary
directory.
For further information have a look at ${PKG_PREFIX}/share/texmf/doc/tetex/.
---------------------------------------------------------------------------
EOT
;;
*)
echo "Unexpected Argument $2!!"
exit 1
;;
esac
exit 0
|