Skip to content

Commit

Permalink
WAGE: Added more documentation to the script
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Dec 28, 2015
1 parent 2802566 commit 0d6b87b
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion devtools/create_wage/create_wage.sh
@@ -1,4 +1,12 @@
#!bash
#!/bin/bash
#
# This script downloads System 7.0.1 image from Apple and extracts fonts
# from it. Mac only, unfortunately.
#
# On Windows you perhaps can perform the extraction manually with use of
# HFV Explorer: https://web.archive.org/web/20011202005455/http://gamma.nic.fi/~lpesonen/HFVExplorer/
#
# More information could be found in the vMac documentation: http://www.gryphel.com/c/image/
#
# Based on instructions posted at
# http://apple.stackexchange.com/questions/58243/can-i-get-the-original-mac-font-chicago-on-a-mountain-lion-mac
Expand All @@ -7,6 +15,11 @@ echo_n() {
printf "$@"
}

if test `uname` != "Darwin"; then
echo This script is Mac OS X-only
exit
fi

echo_n "Downloading System 7.0.1 image..."
if test ! -f System_7.0.1.smi.bin; then
curl -s http://download.info.apple.com/Apple_Support_Area/Apple_Software_Updates/English-North_American/Macintosh/System/Older_System/System_7.0.x/System_7.0.1.smi.bin -o System_7.0.1.smi.bin
Expand Down

0 comments on commit 0d6b87b

Please sign in to comment.