home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / new / util / cli / size / install next >
Text File  |  1994-11-16  |  697b  |  28 lines

  1. ;  *** Size installation scipt ***
  2.  
  3. (set #install-msg (cat "\n\nSize installation script.\n"
  4.      "This script installs the Size command on your Amiga.\n\n"
  5.      "Size © 1994 Markus Hillenbrand\n"
  6.      "All rights reserved."))
  7.  
  8. (set #bad-kick         "You must be using Kickstart 2.04 to install using this script!")
  9.  
  10. (message #install-msg)
  11. (welcome "Welcome to the Size installation!")
  12.  
  13. (if (< (/ (getversion) 65536) 37)((abort #bad-kick)))    
  14.  
  15. (copylib (prompt "\nInstalling Size\n")
  16.      (help @copylib-help)
  17.      (source "Size")
  18.      (dest "C:")
  19.      (confirm)
  20. )
  21.  
  22. (copyfiles (prompt "Installing Size.man\n")
  23.       (help @copy-help)
  24.       (source "Size.man")
  25.       (dest "Work:Manuals")
  26.       (confirm)
  27. )
  28.