home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / PowerCacheV37_58.LHA / Installation / Install_PowerCache.IconX < prev    next >
Encoding:
Text File  |  1993-07-18  |  2.3 KB  |  84 lines

  1. ; $VER: PowerCache_Install_IconX 37.58 (18.7.93)
  2. ;
  3. ; Installation script for PowerCache. Will install 68000 or 68020 executable,
  4. ; documentation and also locale files for users running v38.
  5. ;
  6. ; This file is part of the PowerCache project.
  7. ;
  8. FailAt 20
  9.  
  10. Echo "PowerCache installation script for use with IconX"
  11. Echo "Copyright © 1993, Michael Berg"
  12. Echo "All Rights Reserved"
  13. Echo ""
  14.  
  15. Echo "Installing Libraries:"
  16.  
  17. Echo "    reqtools.library"
  18. Version > NIL: reqtools.library 37
  19. If NOT WARN
  20.     Echo "        You already have: " NOLINE
  21.     Version reqtools.library
  22.     Echo "" NOLINE
  23.     Ask "        Do you want to install version 38.1042 of reqtools.library?"
  24.     If WARN
  25.         Echo "        Copying reqtools.library to your LIBS: ..."
  26.         Copy >NIL: /libs/reqtools.library LIBS:
  27.     Else
  28.         Echo "        Skipped"
  29.     EndIf
  30. EndIf
  31.  
  32. Avail >NIL: FLUSH
  33.  
  34. Echo ""
  35.  
  36. If EXISTS Locale:Catalogs
  37.     Echo "Do you wish to install the PowerCache catalog files?"
  38.     Ask  "Kickstart 2.04 users should answer No, all others Yes: [y/n]: "
  39.     If WARN
  40.         Copy >NIL: Locale Locale: All
  41.         Echo "Catalogs installed"
  42.     EndIf
  43. Else
  44.     Echo "Catalog files not installed -- no Locale directory found"
  45. EndIf
  46.  
  47. If EXISTS SYS:Tools/Commodities
  48.     SetEnv TargetDir Sys:Tools/Commodities
  49. Else
  50.     SetEnv TargetDir Sys:
  51. Endif
  52.  
  53. Echo "Do you wish to install the 68020 version of PowerCache?"
  54. Ask "A1200/A4000 owners should answer Yes: [y/n]: "
  55. If WARN
  56.     SetEnv SourceFile PowerCache.020
  57. Else
  58.     SetEnv SourceFile PowerCache
  59. EndIf
  60.  
  61. Echo "Installing the PowerCache files in $TargetDir/PowerCache/"
  62.  
  63. MakeDir $TargetDir/PowerCache
  64. MakeDir $TargetDir/PowerCache/Documentation
  65.  
  66. Copy >NIL: /$SourceFile $TargetDir/PowerCache
  67. Copy >NIL: /$SourceFile.info $TargetDir/PowerCache
  68. Copy >NIL: /Documentation/#?.guide#? $TargetDir/PowerCache/Documentation
  69.  
  70. Echo "Add PowerCache: ASSIGN statement to S:User-Startup?"
  71. Ask  "(Not strictly required to run PowerCache, but recommended) [y/n]: "
  72.  
  73. If WARN
  74.     Echo "Adding to S:User-Startup..."
  75.  
  76.     Echo ";BEGIN PowerCache" >>S:User-Startup
  77.     Echo "Assign PowerCache: *"$TargetDir/PowerCache*" DEFER" >>S:User-Startup
  78.     Echo ";END PowerCache" >>S:User-Startup
  79.  
  80.     Echo "*NNote: Make sure your S:Startup-sequence executes S:User-Startup!"
  81. EndIf
  82.  
  83. Echo "*NDone. You may close the window now."
  84.