home *** CD-ROM | disk | FTP | other *** search
-
- (complete 0)
-
-
- ;=============================================================================
- ; say hi!
- (welcome)
-
-
- ;=============================================================================
- ; get location where the thing should go
- (set target (askdir (prompt "Where you want the AmigaVision drawer installed?")
- (help "This install procedure will create a drawer "
- "called AmigaVision within the drawer or "
- "partition you specify.\n\n"
- @askdir-help)
- (default @default-dest)
- )
- )
-
- (set target (tackon target "AmigaVision"))
- (set @default-dest target)
- (makedir target (infos))
-
-
- ;=============================================================================
- ; copy files to target
-
- (copylib (source "AV_Install:Libs/camd.library")
- (dest "LIBS:")
- )
-
- (complete 10)
-
- (copylib (source "AV_Install:Libs/realtime.library")
- (dest "LIBS:")
- )
-
- (complete 20)
-
- (copyfiles (source "AV_Install:AV_Text")
- (dest (tackon target "AV_Text"))
- (pattern "#?")
- )
-
- (complete 30)
-
- (copyfiles (source "AV_Install:AV_Help")
- (dest (tackon target "AV_Help"))
- (pattern "#?")
- )
-
- (complete 50)
-
- (askdisk (prompt "\n\n\nPlease insert the AV_Program disk in any floppy drive.")
- (help "Find the floppy disk labeled 'AV_Program' and insert it "
- "into a floppy drive. \n\n"
- @askdisk-help)
- (dest "AV_Program")
- )
-
- (copyfiles (source "AV_Program:AV")
- (dest target)
- )
-
- (complete 95)
-
- (copyfiles (source "AV_Program:AV.info")
- (dest target)
- )
-
- (complete 98)
-
- (startup "AmigaVision" (prompt "\nAn assignment for AmigaVision: needs to be "
- "added to your system. This will be done by "
- "modifying your user-startup or startup-sequence "
- "files."
- )
- (help @startup-help)
- (command "Assign AmigaVision: " target "\n")
- )
-
- (makeassign "AmigaVision" target)
-
- (complete 100)
-