1#!/bin/sh
2#
3# Info-ZIP Zip post-installation script.
4#
5# Last revised: 2007-09-29 SMS.  Zip 3.0.
6#
7# Post installation script (simply inform installer about PATH etc)
8#
9echo ''
10echo 'Installation is complete.  Users should adjust their environment'
11echo 'variables to include these directories:'
12echo "   PATH:    ${BASEDIR}/${PKG}/bin"
13echo "   MANPATH: ${BASEDIR}/${PKG}/man"
14echo ''
15echo "Commands like the following may be added to a user's shell start-up"
16echo 'file (.cshrc, .login, .profile, ...) to do this:'
17echo ''
18echo '   For a Bourne-like shell:'
19echo "      PATH=\"\${PATH}:${BASEDIR}/${PKG}/bin\""
20echo "      MANPATH=\"\${MANPATH}:${BASEDIR}/${PKG}/man\""
21echo '      export PATH MANPATH'
22echo ''
23echo '   For a C shell:'
24echo "      setenv PATH \"\${PATH}:${BASEDIR}/${PKG}/bin\""
25echo "      setenv MANPATH \"\${MANPATH}:${BASEDIR}/${PKG}/man\""
26echo ''
27echo "See the files under ${BASEDIR}/${PKG}/doc for more information."
28echo ''
29exit 0
30