home *** CD-ROM | disk | FTP | other *** search
- ;
- ;$VER: FVK Installscript 1.0 (02/02/98) by RaMoNsTeR\DC
- ;-----------------------------------------------------------
- ; -=- Why are you looking here n e wayz? :) -=-
- ;
- (SET @app-name "FVK")
- (SET @default-dest "SYS:")
-
- (message "\n\n--××·· -÷- ··××---÷---××·· -÷- ··××---÷---××·· -÷- ··××-- -÷-\n\n"
- "Digital Corruption presents...\n\n"
- "FastVirusKiller by Dave Jones (c)1998\n\n"
- "--××·· -÷- ··××---÷---××·· -÷- ··××---÷---××·· -÷- ··××-- -÷-")
-
- (SET DestDir
- (ASKDIR (prompt "Please Select where you would like FVK installed.\nA new directory called 'FastVirusKiller' will be created.")
- (help "\n\nSelect a volume or drawer where you would like the FVK drawer to be created.\n\n"
- "The main executable and support documentation etc. will be placed inside the 'FVK' dir."
- )
- (default @default-dest)
- (disk)
- )
- )
-
- (complete 0)
-
- (SET DestDir (TACKON DestDir "FastVirusKiller"))
- (SET @default-dest DestDir)
-
-
- (set runstart
- (askchoice
- (prompt "Do you wish to run FastVirusKiller on system startup?")
- (help "Installing FVK to WBStartup means FVK will be run every time\n"
- "your system is booted up.\n\n"
- "If you wish to use/run FVK manually and not on startup, then\n"
- "choose not to run FVK to startup.")
- (default 1)
- (choices "Yes Please" "No Thanks")
- )
- )
-
- (if (= runstart 0)
- (COPYFILES
- (prompt "Installing FVK to WBStartup.")
- (help "\n\nThe main FVK executable will now be copied to WBStartup")
- (source "FastVirusKiller/FastVirusKiller")
- (dest "SYS:WBStartup")
- (infos)
- (confirm)
- (optional nofail askuser force)
- )
-
- )
-
- (COPYFILES
- (prompt "Installing the FVK main file.")
- (help "\n\nThe main FVK executable will now be copied to the destination dir.")
- (source "FastVirusKiller/FastVirusKiller")
- (dest DestDir)
- (infos)
- (confirm)
- (optional nofail askuser force)
- )
-
-
- (complete 15)
-
- (SET DestDir (TACKON DestDir "Documentation"))
-
- (COPYFILES
- (prompt "Installing the FVK documentation.")
- (help "\n\nTo install the documentation to the FVK directory leave the boxes ticked.\n\n"
- "If you do not wish to install documention deselect the appropriate checkboxes."
- )
- (source "FastVirusKiller/Documentation")
- (dest DestDir)
- (infos)
- (confirm)
- (optional nofail askuser force)
- (all)
- )
-
- (complete 30)
-
- (COPYLIB
- (prompt "Installing the xfd library.")
- (help "\n\nXFD library decrunches files packed with supported crunchers.\nIt is necessary for FastVirusKiller to run correctly.\n\n"
- "XFD library is (c) 1998 Georg Hormann.")
- (source "FastVirusKiller/libs/xfdmaster.library")
- (dest "libs:")
- (confirm)
- (optional nofail askuser force)
- )
-
-
- (complete 45)
-
- (COPYFILES
- (prompt "Installing the xfd external support files.")
- (help "\n\nXFD library decrunches files packed with supported crunchers.\nIt is necessary for FastVirusKiller to run correctly.\n\n"
- "XFD library is (c) 1998 Georg Hormann.")
- (source "FastVirusKiller/libs/xfd")
- (dest "libs:xfd")
- (optional nofail askuser force)
- (confirm)
- (all)
- )
-
- (complete 75)
-
- (COPYLIB
- (prompt "\n\nInstalling the reqtools library.")
- (help "\n\nReqTools is a popular shared library used by many applications.\n\n"
- "It is required by FVK in order to run correctly."
- )
- (source "FastVirusKiller/libs/reqtools.library")
- (dest "libs:")
- (confirm)
- (optional nofail askuser force)
- )
-
-
- (complete 90)
-
-
- (IF (> (run "Sys:Utilities/MultiView FastVirusKiller/documentation/FastVirusKiller.GUIDE") 0)
- (IF (> (run "Sys:Utilities/AmigaGuide FastVirusKiller/documentation/FastVirusKiller.GUIDE") 0)
- )
- )
-
- (complete 100)
-
- (message "\n\nThanks for installing FastVirusKiller!\n\nFor bugreports/support etc. please refer to the included documentation...\n\n...ENJOY!!!")
-
- (EXIT)
-