Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. #!/bin/sh
  2. #
  3. # Post installation script (simply inform installer about PATH etc)
  4. #
  5. echo " "
  6. echo " "
  7. echo "Installation is complete.  Now, you should add the following"
  8. echo "(or equivalnet) commands to the appropriate initial user shell"
  9. echo "scripts (such as .profile, .login, etc) -- "
  10. echo " "
  11. echo " For korn or bourne shell:"
  12. echo "   PATH=\${PATH}:${BASEDIR}/${PKG}/bin"
  13. echo "   MANPATH=\${MANPATH}:${BASEDIR}/${PKG}/man"
  14. echo "   export PATH MANPATH"
  15. echo " "
  16. echo " For C shell:"
  17. echo "   set path=(\$path ${BASEDIR}/${PKG}/bin)"
  18. echo "   setenv MANPATH \$MANPATH:${BASEDIR}/${PKG}/man"
  19. echo " "
  20. echo " See the files under ${BASEDIR}/${PKG}/doc for more information."
  21. echo " "
  22. exit 0
  23.