home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
-
- PKG_DIR=$1
- INSTALL_DIR=${2-/LocalLibrary/Frameworks}
- LINK_DIR=/usr/local/bin
- PWD=`pwd`
-
- # Let's make a few symbolic links in LINK_DIR
- LINKS='perl perl5 perl5.00404'
-
- echo
-
- set -x
- cd $LINK_DIR
- for prog in $LINKS ; do
- rm -f $prog
- ln -s $2/Perl.framework/bin/$prog
- done
- set -
-
- cd $PWD
-
- echo done.
-