home *** CD-ROM | disk | FTP | other *** search
- ; $VER: dA JoRMaS & Suburban Base: Borrrderline (23.12.95)
- ; Installer Revision 3 (23.12.95)
-
- (complete 0)
- ;=============================================================================
- ; English strings
-
- (set #intro
- (cat "\n\n\n\n\nWelcome to the Borrrderline installer.\n\n"
- "This program lets you install the Borrrderline music disk "
- "on your system."
- ))
-
- (set #destdir
- (cat "Please select a place for Borrrderline. "
- "A drawer called 'Borrrderline' will be created here. "
- "The minimum space required is about 2.2Mb."
- ))
-
- (set #destexists
- (cat "\n\n\n\n\nA Borrrderline drawer does already exists in your selected destination directory. "
- "By proceeding, you indicate that you wish to delete the "
- "contents of this drawer and replace them with the new "
- "installation."
- ))
-
- (set #insertdiskmsg
- (cat "\n\n\n\n\nPlease insert the disk labelled\n\n"
- ))
-
- ;=============================================================================
- ; Procedure Definitions
-
- (procedure @GetDisk
- (
- (askdisk
- (prompt #insertdiskmsg #filesourcedisk)
- (help #diskhelp)
- (dest #filesourcedisk)
- )
- )
- )
-
- ;=============================================================================
- ; Say hello
-
- (set @default-dest "SYS:")
- (message #intro)
-
- ;=============================================================================
- ; Ask for destination directory
-
- (set @default-dest
- (askdir
- (prompt #destdir)
- (help @askdir-help)
- (default @default-dest)
- )
- )
-
- (set @default-dest (expandpath @default-dest))
- (set destination (tackon @default-dest "Borrrderline"))
-
- (if (<> (exists destination) 0)
- (
- (message #destexists)
- (run (cat "delete " destination " all >nil:"))
- (run (cat "delete " destination ".info >nil:"))
- ))
-
- ;=============================================================================
- ; Lets go, create destination directory, copy main files and libs
-
- (complete 5)
-
- (makedir destination (help @makedir-help))
- ;(run (cat "copy ENV:Sys/Def_Drawer.info \"" destination ".info\""))
-
- (complete 10)
-
- (copyfiles
- (prompt "Copying disk 1 files...")
- (source "Borrrderline1:")
- (pattern "~(install#?|Disk.info|c|devs|s)")
- (dest destination)
- (infos)
- (help @copyfiles-help)
- )
-
- (complete 40)
- (set #filesourcedisk "Borrrderline2")
- (@GetDisk)
- (copyfiles
- (prompt "Copying disk 2 files...")
- (source "Borrrderline2:")
- (pattern "~(#?.info)")
- (dest destination)
- (infos)
- (help @copyfiles-help)
- )
-
- (complete 70)
- (set #filesourcedisk "Borrrderline3")
- (@GetDisk)
- (copyfiles
- (prompt "Copying disk 3 files...")
- (source "Borrrderline3:")
- (pattern "~(#?.info)")
- (dest destination)
- (infos)
- (help @copyfiles-help)
- )
-
- (complete 99)
-
- ;=============================================================================
- ; Startup Sequence
-
- (startup "Borrrderline"
- (prompt "Some commands will be added to your \"s:user-startup\" file.")
- (help @startup-help)
- (command "if exists \"" destination "\"\n")
- (command " assign Borrrderline1: \"" destination "\"\n")
- (command " assign Borrrderline2: \"" destination "\"\n")
- (command " assign Borrrderline3: \"" destination "\"\n")
- (command "endif")
- )
-
- ;=============================================================================
- ; Finish
-
- (complete 100)
- (exit "Please reboot your computer before running Borrrderline.")
-