Skip to content

Instantly share code, notes, and snippets.

@pmembrey
Created October 20, 2012 16:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pmembrey/3923908 to your computer and use it in GitHub Desktop.
Save pmembrey/3923908 to your computer and use it in GitHub Desktop.
Install Squeak on Raspberry Pi (from jstout on the Raspberry Pi forums)
echo "Fetching sources for Squeak..."
wget -r -O SqueakV41.sources.gz http://ftp.squeak.org/4.1/SqueakV41.sources.gz
echo "(g)Unzipping sources.."
gunzip -f SqueakV41.sources.gz
echo "Fetching image and changes..."
wget -r -O Squeak-4.3-All-in-One.zip http://ftp.squeak.org/4.3/Squeak-4.3-All-in-One.zip
echo "Unzippping image and changes files..."
unzip -j -o Squeak-4.3-All-in-One.zip "Squeak-4.3-All-in-One.app/Contents/Resources/Squeak4.3.*"
echo "Moving sources, image, and changes files to Squeak directory..."
sudo mv SqueakV41.sources /usr/share/squeak
sudo mv Squeak4.3.image /usr/share/squeak
sudo mv Squeak4.3.changes /usr/share/squeak
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment