diff options
author | Eugene Sandulenko | 2015-12-28 01:08:39 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2015-12-28 01:08:39 +0100 |
commit | 0d6b87b785ffba32f166411e6c44fc7abc33e0eb (patch) | |
tree | 64bf5a013aed166aef6a91f9f45ff879977b4c9e /devtools/create_wage | |
parent | 2802566f43bfe19f940051746abf8ff8b1c6d776 (diff) | |
download | scummvm-rg350-0d6b87b785ffba32f166411e6c44fc7abc33e0eb.tar.gz scummvm-rg350-0d6b87b785ffba32f166411e6c44fc7abc33e0eb.tar.bz2 scummvm-rg350-0d6b87b785ffba32f166411e6c44fc7abc33e0eb.zip |
WAGE: Added more documentation to the script
Diffstat (limited to 'devtools/create_wage')
-rwxr-xr-x | devtools/create_wage/create_wage.sh | 15 |
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 |