Skip to content

Instantly share code, notes, and snippets.

@tuklusan
Created January 15, 2018 22:45
Show Gist options
  • Save tuklusan/30fd8df4515139e9207b645f87e9e02c to your computer and use it in GitHub Desktop.
Save tuklusan/30fd8df4515139e9207b645f87e9e02c to your computer and use it in GitHub Desktop.
Build SheepShaver Power Macintosh G4 emulator for Classic Mac OS 9 emulation and connect over AppleTalk using Netatalk: See http://bit.ly/MacOS9-SheepShaver
#!/bin/bash
#
# build-sheepshaver.sh
#
# Downloads / updates SheepShaver source and compiles it
#
# ---
# Supratim Sanyal
# Details: http://bit.ly/MacOS9-SheepShaver
# ---
mkdir -p ~/sheepshaver.build
cd ~/sheepshaver.build/
git clone https://github.com/cebix/macemu.git # Will fail if already run before but okay to fail then
cd ~/sheepshaver.build/macemu/
git rebase
git gc
cd ./SheepShaver/
make links
cd ./src/Unix/
./autogen.sh
make
cd ~
date
ls -l ~/sheepshaver.build/macemu/SheepShaver/src/Unix/SheepShaver
echo Now run build-sheep-net.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment