summaryrefslogtreecommitdiff
path: root/unix/Packaging/postinstall
diff options
context:
space:
mode:
Diffstat (limited to 'unix/Packaging/postinstall')
-rwxr-xr-xunix/Packaging/postinstall22
1 files changed, 22 insertions, 0 deletions
diff --git a/unix/Packaging/postinstall b/unix/Packaging/postinstall
new file mode 100755
index 0000000..030067d
--- /dev/null
+++ b/unix/Packaging/postinstall
@@ -0,0 +1,22 @@
+#!/bin/sh
+#
+# Post installation script (simply inform installer about PATH etc)
+#
+echo " "
+echo " "
+echo "Installation is complete. Now, you should add the following"
+echo "(or equivalnet) commands to the appropriate initial user shell"
+echo "scripts (such as .profile, .login, etc) -- "
+echo " "
+echo " For korn or bourne shell:"
+echo " PATH=\${PATH}:${BASEDIR}/${PKG}/bin"
+echo " MANPATH=\${MANPATH}:${BASEDIR}/${PKG}/man"
+echo " export PATH MANPATH"
+echo " "
+echo " For C shell:"
+echo " set path=(\$path ${BASEDIR}/${PKG}/bin)"
+echo " setenv MANPATH \$MANPATH:${BASEDIR}/${PKG}/man"
+echo " "
+echo " See the files under ${BASEDIR}/${PKG}/doc for more information."
+echo " "
+exit 0