home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / programm / libs / reqtools.lha / ReqTools / Install / Install ReqTools next >
Encoding:
Text File  |  1992-06-29  |  869 b   |  36 lines

  1.  
  2. ; Install script for ReqTools (Workbench 2.0)
  3.  
  4. (set @default-dest "")
  5.  
  6. (set reqtoolslib "/libs20/reqtools.library")
  7.  
  8. ;=============================================================================
  9. ; English strings
  10.  
  11. (set #bad-kick
  12. (cat "You must be using Kickstart 2.04 to install using this script."
  13.       " Double-click the 'Workbench_1.2-1.3' icon to install ReqTools on"
  14.       " Kickstart 1.2 or 1.3 machines."
  15. ))
  16.  
  17. (set #copying-reqtools "Copying reqtools.library (2.0 version) to Libs:")
  18.  
  19. ;=============================================================================
  20. ; make sure we are running under a 2.04 ROM
  21.  
  22. (if (< (/ (getversion) 65536) 37)
  23. (
  24.     (abort #bad-kick)
  25. ))
  26.  
  27. ;=============================================================================
  28.  
  29. (copylib
  30.     (prompt "\n" #copying-reqtools)
  31.     (help @copylib-help)
  32.     (source reqtoolslib)
  33.     (dest "Libs:")
  34.     (confirm)
  35. )
  36.