Save this as a shell script and execute it. You must have X Code
installed on your Mac.
#!/bin/sh
# season to taste
VER="alpine-2.00"
# create a build directory, but save source files if they exist
BLDDIR=/var/tmp/${VER}-build
test -d $BLDDIR || mkdir $BLDDIR
test -d ${BLDDIR}/${VER} && /bin/rm -rf ${BLDDIR}/${VER}
cd $BLDDIR
# fetch and unpack the source
curl -C - \
-O ftp://ftp.cac.washington.edu/alpine/${VER}.tar.gz \
-O http://staff.washington.edu/chappa/alpine/patches/${VER}/fillpara.patch.gz
tar xzf ${VER}.tar.gz
cd ${VER}
gzip -dc ../fillpara.patch.gz | patch -p1
# configure and build
./configure --prefix=/usr/local
make
# install alpine (optional)
sudo make install
--
John Mayson <jo...@mayson.us>
Austin, Texas, USA
If you have Xcode from the Apple MAC OS X DVD/CD installed you can try these
techniques to get and run alpine.
Open a web browser and paste:
ftp://ftp.cac.washington.edu/alpine/bin/alpine-bin.osx-10.5.Z
ftp://ftp.cac.washington.edu/alpine/bin/pico-bin.osx-10.5.Z
ftp://ftp.cac.washington.edu/alpine/bin/pilot-bin.osx-10.5.Z
If still get an error then try a regular FTP client like cyberduck
and go to the address:
ftp.cac.washington.edu
navigate to the folder/directory
/alpine/bin
and download:
alpine-bin.osx-10.5.Z
pico-bin.osx-10.5.Z
pilot-bin.osx-10.5.Z
Open the terminal and cd to the folder you downloaded the files
and paste or type:
uncompress alpine-bin.osx-10.5.Z
uncompress pico-bin.osx-10.5.Z
uncompress pilot-bin.osx-10.5.Z
(Note: I don't know if stuff it expander will handled compressed Z files, but
you can try it to see if it works. )
then type:
./alpine-bin.osx-10.5
to see if it will work in your system.
If it will work then you can place the three files
in /usr/local/bin with
sudo cp alpine-bin.osx-10.5 /usr/local/bin/alpine
sudo cp pico-bin.osx-10.5 /usr/local/bin/pico
sudo cp pilot-bin.osx-10.5 /usr/local/bin/pilot
then type
alpine
to run and set up alpine
If you have wget installed then try this script:
#!/bin/bash
echo "Lets get the programs"
wget ftp://ftp.cac.washington.edu/alpine/bin/alpine-bin.osx-10.5.Z
wget ftp://ftp.cac.washington.edu/alpine/bin/pico-bin.osx-10.5.Z
wget ftp://ftp.cac.washington.edu/alpine/bin/pilot-bin.osx-10.5.Z
echo "now we will uncompress them"
uncompress alpine-bin.osx-10.5.Z
uncompress pico-bin.osx-10.5.Z
uncompress pilot-bin.osx-10.5.Z
echo "now we will copy and rename the files to a directory"
sudo cp alpine-bin.osx-10.5 /usr/local/bin/alpine
sudo cp pico-bin.osx-10.5 /usr/local/bin/pico
sudo cp pilot-bin.osx-10.5 /usr/local/bin/pilot
exit
#end of script
--
Best Regards, Keith
http://home.comcast.net/~kilowattradio/
My valid email is kilowattradio at gmail.com