home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format 132 / af132a.adf / Zoom.lzx / Zoom / Install_Zoom next >
Text File  |  1999-11-02  |  2KB  |  55 lines

  1. ; $VER: 1.0 (22.07.99)
  2. (set cx(askdir(prompt "Select the location for Zoom")
  3.   (help "Zoom will be installed to this location.") (default "SYS:WBStartup/")))
  4.  
  5. (copyfiles
  6.   (source "Zoom") (dest cx) (infos)
  7. )
  8.  
  9. (complete 25)
  10.  
  11. (copylib
  12.     (prompt ("Install FileID.library?"))
  13.     (help "FileID.library must be installed.")
  14.     (source ("Libs/fileid.library"))
  15.     (dest "Libs:")
  16.     (confirm)
  17. )
  18.  
  19. (complete 50)
  20.  
  21. (copylib
  22.     (prompt ("Install XFDmaster.library?"))
  23.     (help "XFDmaster.library is used for unpacking files. Installation is optional.")
  24.     (source ("Libs/xfdmaster.library"))
  25.     (dest "Libs:")
  26.     (confirm)
  27. )
  28.  
  29. (set #brains
  30. (askchoice
  31. (prompt ("Update XFD brainfiles?"))
  32. (help "You might have updated the brainfiles at some time without updating the library. If you have the XFD system installed already, it might be best not to copy them unless your copy of xfdmaster.library was miles out of date.")
  33. (choices "Update" "Skip it")
  34. (default "Update")
  35. ))
  36.  
  37. (if (= #brains 0)
  38. ((copyfiles (source "Libs/XFD")
  39.  (dest "Libs:XFD") (all))
  40. ))
  41.  
  42. (complete 75)
  43.  
  44. (copylib
  45.     (prompt ("Install Reqtools.library?"))
  46.     (help "Reqtools.library must be installed. Get on with it!")
  47.     (source ("Libs/xfdmaster.library"))
  48.     (dest "Libs:")
  49.     (confirm)
  50. )
  51.  
  52. (complete 100)
  53.  
  54. (exit 'Installation complete!\n\nZoom Copyright © 1999 Micro Design\n\nFileID.library Copyright © 1993-1998 Oliver "Bloodrock" Lange\n\nXFDmaster.library Copyright © 1994-97 Georg Hörmman\n\nReqtools.library Copyright © 1991-1994 Nico François\nand Copyright © 1995-1997 Magnus Holmgren\n\nThe software is supplied "as is" and comes with absolutely no warranty either expressed or implied.' (quiet))
  55.