home *** CD-ROM | disk | FTP | other *** search
-
- ; Install script for Triton (Workbench 2.0)
-
- (set @default-dest "")
-
- (set tritonlib "/libs20/triton.library")
-
- ;=============================================================================
- ; English strings
-
- (set #bad-kick "You must be using Kickstart 2.04 to run Triton.")
-
- (set #copying-triton "Copying triton.library to Libs:...")
-
- (set #install-msg
- (cat "\n\nTriton installation script.\n"
- "This script installs Triton library on your Amiga.\n\n"
- "Read the 'Distribution' file for\n"
- "more information on the distribution\n"
- "and commercial usage of Triton.\n\n"
- "Triton © 1993-1994 Stefan Zeiger.\n"
- "All rights reserved."
- ))
-
- ;=============================================================================
- ; make sure we are running under a 2.04 ROM
-
- (if (< (/ (getversion) 65536) 37)
- (
- (abort #bad-kick)
- ))
-
- ;=============================================================================
-
- (message #install-msg)
-
- (copylib
- (prompt "\n" #copying-triton)
- (help @copylib-help)
- (source tritonlib)
- (dest "Libs:")
- (confirm)
- )
-