home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format 98 / af098sub.adf / disksqueeze.LZX / DiskSqueeze / Install < prev    next >
Text File  |  2003-05-15  |  2KB  |  91 lines

  1. (
  2.   (working "Installing DiskSqueeze v1.22")
  3.  
  4. (set @default-dest "")
  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 DiskSqueeze MagicWB icon")
  25.         (source "DiskSqueeze.info")
  26.         (dest dsq_dest)
  27.       )
  28.  
  29.       (copyfiles
  30.         (prompt "Copying the Check utility")
  31.         (source "Check")
  32.         (dest dsq_dest)
  33.       )
  34.  
  35.       (copyfiles
  36.         (prompt "Copying the Check MagicWB icon")
  37.         (source "Check.info")
  38.         (dest dsq_dest)
  39.       )
  40.  
  41.       (copyfiles
  42.         (prompt "Copying the necessary tools. Don't forget to install LZX (not included here)")
  43.         (help @copyfiles-help)
  44.         (source "Programs/")
  45.         (ALL)
  46.         (dest "C:")
  47.         (confirm)
  48.         (infos)
  49.       )
  50.  
  51.       (copyfiles
  52.         (prompt "Copying the dms-device v1.4.")
  53.         (help @copyfiles-help)
  54.         (source "Devs/")
  55.         (ALL)
  56.         (dest "DEVS:")
  57.         (confirm)
  58.         (infos)
  59.       )
  60.       (if (< (getversion "LIBS:version.library") (* 39 65536))
  61.        (copyfiles
  62.         (prompt "Copying the FileRequester command to your C: dir")
  63.         (help @copyfiles-help)
  64.          (source "37.x/")
  65.         (ALL)
  66.         (dest "C:")
  67.         (confirm)
  68.        )
  69.       )
  70.  
  71.       (copyfiles
  72.         (prompt "Select the document-files to copy")
  73.         (help @copyfiles-help)
  74.         (source "Docs/")
  75.         (ALL)
  76.         (dest dsq_dest)
  77.         (confirm)
  78.         (infos)
  79.       )
  80.  
  81.       (copyfiles
  82.         (prompt "Select the preview-pictures to copy")
  83.         (help @copyfiles-help)
  84.         (source "Preview/")
  85.         (ALL)
  86.         (dest "RAM:")
  87.         (confirm)
  88.         (infos)
  89.       )
  90. )
  91.