home *** CD-ROM | disk | FTP | other *** search
Text File | 1990-07-23 | 1.6 KB | 64 lines | [TEXT/MPS ] |
- # I N S T A L L A T I O N S T A R T U P S C R I P T
- #
- # Copyright Apple Computer, Inc. 1987, 1988, 1989, 1990
- # All rights reserved.
- #
- # This script is used to install MPW, SADE, MacsBug, ResEdit, MacApp, C++ and 411
- # from the distribution compact disk onto a destination hard disk. This installer
- # can also update a previous version of any of the above to a later version level
- # or revert from any version to an earlier version.
-
-
- # Export some built-in Shell variables.
-
- # {Boot} - The boot disk. (Predefined.)
- Export Boot
-
- # {SystemFolder} - The directory that contains System & Finder. (Predefined.)
- Export SystemFolder
-
- # {ShellDirectory} - The directory that contains MPW Shell. (Predefined.)
- Export ShellDirectory
-
- # {Active} - The active (topmost) window. (Predefined.)
- Export Active
-
- # {Target} - The target (previously active) window. (Predefined.)
- Export Target
-
- # {Worksheet} - The name of the Worksheet window. (Predefined.)
- Export Worksheet
-
-
- # {Status} - The result of the last command executed. (Predefined.)
- Export Status
-
- # {Commando} - the Commando tool and support
-
- Export Windows
- Export Aliases
- Set Commando Commando
- Export Commando
-
- ### Start the main Installer loop
-
- Loop ### Call the Install script via the Commando Interface
-
- Install…
-
- Confirm -t "Another Installation?" ∂
- "Click “Yes” to perform additional installations" ∂
- "or “No” to exit the MPW installation process."
-
- Break if {Status} != 0
-
- End
-
- #
-
- Alert "Installation complete! The Installer will now quit. You " ∂
- "may remove the Installation Folder from your hard drive."
- Quit -n
- Exit 0
-
-