home *** CD-ROM | disk | FTP | other *** search
- ; ************************************************
- ; *
- ; * SystemPrefs - HD Install Script
- ; *
- ; * $VER: Install-System 1.30
- ; *
- ; * Script written by Richard Körber
- ; *
- ; ************************************************
-
-
- (set ToolSource "System")
- (set CLIToolSource "C/SysPrefs")
- (set LangSource "Catalogs/")
- (set LibSource1 "Libs/provision.library")
- (set LibSource2 "Libs/reqtools.library")
- (set LibSource3 "Libs/identify.library")
-
- (set CopyLib1Prompt "Copy provision.library?")
- (set CopyLib2Prompt "Copy reqtools.library?")
- (set CopyLib3Prompt "Copy identify.library?")
- (set ToolDirPrompt "Copy System to...?")
- (set CLIDirPrompt "Copy SysPrefs to...?")
- (set ToolCopyPrompt "Copying System...")
- (set CLICopyPrompt "Copying SysPrefs...")
- (set LangCopyPrompt "Copying locale files...")
-
-
- (set ToolDir (askdir
- (prompt ToolDirPrompt)
- (help @askdir-help)
- (default "SYS:Prefs/")
- ))
-
- (set CLIToolDir (askdir
- (prompt CLIDirPrompt)
- (help @askdir-help)
- (default "SYS:C/")
- ))
-
- (copyfiles
- (prompt ToolCopyPrompt)
- (help @copyfiles-help)
- (source ToolSource)
- (dest ToolDir)
- (infos)
- )
-
- (copyfiles
- (prompt CLICopyPrompt)
- (help @copyfiles-help)
- (source CLIToolSource)
- (dest CLIToolDir)
- )
-
- (copyfiles
- (prompt LangCopyPrompt)
- (help @copyfiles-help)
- (source LangSource)
- (dest "LOCALE:catalogs")
- (choices "Deutsch" "Français" "Italiano" "Svenska")
- (confirm)
- )
-
- (copylib
- (prompt CopyLib1Prompt)
- (help @copylib-help)
- (source LibSource1)
- (dest "LIBS:")
- (confirm)
- )
-
- (copylib
- (prompt CopyLib2Prompt)
- (help @copylib-help)
- (source LibSource2)
- (dest "LIBS:")
- (confirm)
- )
-
- (copylib
- (prompt CopyLib3Prompt)
- (help @copylib-help)
- (source LibSource3)
- (dest "LIBS:")
- (confirm)
- )
-
- (message "Please add the following line\ninto s:startup-sequence:\n\n"
- " SysPrefs >NIL: \n\n"
- "Just before 'IPrefs' is the best place.")
-