home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Cruncher / LEEDSQE.LZX / DiskSqueeze! / Install < prev    next >
Encoding:
Text File  |  1995-08-28  |  1.6 KB  |  68 lines

  1. (
  2.   (working "Installing DiskSqueeze! v1.00")
  3.  
  4. (set @default-dest "SYS:Tools")
  5.  
  6. (if (< (getversion "LIBS:version.library") (* 37 65536))
  7.    (abort "DiskSqueeze! requires Workbench 2.0 or higher")
  8. )
  9.  
  10. (set dsq_dest
  11.    (askdir
  12.       (prompt "In which drawer should DiskSqueeze! & tools be copied?")
  13.       (help @askdir-help)
  14.       (default "SYS:Tools")
  15.    )
  16. )
  17.       (copyfiles
  18.         (prompt "Copying the main file (with MagicWB icon)")
  19.         (source "DiskSqueeze!")
  20.         (dest dsq_dest)
  21.       )
  22.  
  23.       (copyfiles
  24.         (prompt "Copying the MagicWB icon")
  25.         (source "DiskSqueeze!.info")
  26.         (dest dsq_dest)
  27.       )
  28.  
  29.       (copyfiles
  30.         (prompt "Copying the necessary tools. Don't forget to install LZX and DMS! (not included here)")
  31.         (help @copyfiles-help)
  32.         (source "Programs/")
  33.         (ALL)
  34.         (dest dsq_dest)
  35.         (confirm)
  36.         (infos)
  37.       )
  38.  
  39.       (copyfiles
  40.        (prompt "Copying the Requester commands to your C: dir\n>>> for OS 2.x only!!! <<<\n(OS 3.x users already have these!)")
  41.        (help @copyfiles-help)
  42.        (source "C/")
  43.        (ALL)
  44.        (dest "C:")
  45.        (confirm)
  46.       )
  47.  
  48.       (copyfiles
  49.         (prompt "Select the document-files to copy")
  50.         (help @copyfiles-help)
  51.         (source "Documents/")
  52.         (ALL)
  53.         (dest dsq_dest)
  54.         (confirm)
  55.         (infos)
  56.       )
  57.  
  58.        (copyfiles
  59.          (prompt "Select the Ram-Drive mountfiles (880K) to copy")
  60.          (help @copyfiles-help)
  61.          (source "Storage/DOSdrivers")
  62.          (ALL)
  63.          (dest "SYS:Storage/DOSdrivers")
  64.          (confirm)
  65.          (infos)
  66.        )
  67. )
  68.