home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / compress / cdisk16.lha / Release1.6_E / CDInstall next >
Text File  |  1993-02-25  |  1KB  |  62 lines

  1. ; CompressDisk installation program
  2. ; By Raffaele Dell'Aversana (12-Oct-92)
  3. FailAt 20
  4.  
  5. Echo "*nCompressDisk.device installation script"
  6. Echo "Version 37.25 (Release 1.6) Evaluation*n"
  7.  
  8. Version >NIL: exec.library 37
  9. If WARN
  10.     Echo "You don't have AmigaDOS Release 2 (V37) or higher in ROM."
  11.     Echo "Sorry, you cannot use CompressDisk.device."
  12.     Quit
  13. EndIf
  14.  
  15. Echo "This script will install CompressDisk for you."
  16. Echo "You may select if and where to install the files.*n"
  17.  
  18. If EXISTS DEVS:CompressDisk.device
  19.     Echo "Version of CompressDisk.device already installed:"
  20.     Version DEVS:CompressDisk.device
  21.     Echo ""
  22. EndIf
  23.  
  24. Ask "Install CompressDisk.device 37.25 ?*nThe file will be placed in DEVS:"
  25.  
  26. If WARN
  27.     Copy CompressDisk.device DEVS:
  28.     Echo "CompressDisk.device copied to your DEVS: directory"
  29. EndIf
  30.  
  31. If EXISTS  SYS:Prefs/CDPrefs
  32.     Echo "*nVersion of CDPrefs already installed:"
  33.     Version SYS:Prefs/CDPrefs
  34.     Echo ""
  35. EndIf
  36.  
  37. Ask "Install CDPrefs 37.11?"
  38.  
  39. If WARN
  40.     Copy CDPrefs SYS:Prefs
  41.  
  42.     If NOT EXISTS SYS:Prefs/CDPrefs.info
  43.         Copy CDPrefs.info SYS:Prefs
  44.     EndIf
  45.  
  46.     Echo "*nCDPrefs + icon copied to SYS:Prefs"
  47. EndIf
  48.  
  49. assign >nil: CDisk: EXISTS
  50.  
  51. If WARN
  52.  
  53. Echo "*n*nThe device needs to know where to put the compressed tracks"
  54. Echo "Please modify your s:user-startup file, adding the following line"
  55. Echo "*n   Assign CDisk: <path>*n"
  56. Echo "soon after the command *"SetPatch*""
  57. Echo "( <path> is the path of the work directory you have chosen)."
  58.  
  59. EndIf
  60. Echo "*nInstallation complete.*n"
  61.  
  62.