Created
January 15, 2018 22:45
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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