aboutsummaryrefslogtreecommitdiff
path: root/devtools
diff options
context:
space:
mode:
Diffstat (limited to 'devtools')
-rwxr-xr-xdevtools/create_wage/create_wage.sh15
1 files changed, 14 insertions, 1 deletions
diff --git a/devtools/create_wage/create_wage.sh b/devtools/create_wage/create_wage.sh
index fb3c047661..1ec7ef3ed3 100755
--- a/devtools/create_wage/create_wage.sh
+++ b/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
@@ -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