home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 8
/
FreshFishVol8-CD1.bin
/
useful
/
util
/
virus
/
viruschecker
/
installvc
< prev
next >
Wrap
Text File
|
1995-01-22
|
2KB
|
121 lines
; $VER: Install Virus_Checker V1.0 (4 June 1993)
; This script can be distributed with Virus_Checker Program by
; John Veldthuis
; ask where to install virus_checker
(set @default-dest
(askdir
(prompt "Please select the Directory where you would like to install"
" Virus_Checker. ")
(help @askdir-help)
(default "SYS:")
)
)
(
(working "Installing Virus_Checker Program")
(copyfiles
(prompt "")
(help @copyfiles-help)
(source "Virus_Checker")
(dest @default-dest)
(infos)
)
(set brain
(exists "VirusChecker.brain" (noreq))
)
(if brain
(copyfiles
(prompt "")
(help @copyfiles-help)
(source "VirusChecker.brain")
(dest "L:")
)
(copylib
(prompt "")
(help @copyfiles-help)
(source "L/VirusChecker.brain")
(dest "L:")
)
)
(copyfiles
(prompt "Would you like to install the documentation for Virus_Checker"
"which is in amigaguide standard.")
(help @copyfiles-help)
(source "Virus_Checker.guide")
(dest @default-dest)
(confirm)
(infos)
)
)
(working "Installing Needed Libraries")
(set lib1
(exists "Bootblock.library" (noreq))
)
(if lib1
(copylib
(prompt "")
(help @copylib-help)
(source "Bootblock.library")
(dest "libs:")
(confirm)
)
(copylib
(prompt "")
(help @copylib-help)
(source "libs/Bootblock.library")
(dest "libs:")
(confirm)
)
)
(set lnam
(exists "Bootblock.brainfile" (noreq))
)
(if lnam
(copyfiles
(prompt "")
(help @copyfiles-help)
(source "Bootblock.brainfile")
(dest "L:")
)
(copyfiles
(prompt "")
(help @copyfiles-help)
(source "l/Bootblock.brainfile")
(dest "L:")
)
)
(set lib3
(exists "unpack.library" (noreq))
)
(if lib3
(copylib
(prompt "")
(help @copylib-help)
(source "unpack.library")
(dest "libs:")
(confirm)
)
(copylib
(prompt "")
(help @copylib-help)
(source "libs/unpack.library")
(dest "libs")
(confirm)
)
)
(startup @app-name
(prompt "Shall I add Virus_Checker to your s:startup-sequence"
"/s:user-startup so that it will be run each time"
" you turn your Amiga on")
(help @startup-help)
(command "Virus_Checker")
)
(exit)