home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD2.bin / bbs / util / pplib-1.6.lha / PPlib / Install < prev    next >
Text File  |  1993-12-21  |  1KB  |  47 lines

  1.  
  2. ; Install script for powerpacker.library
  3.  
  4. (set old_level @user-level)
  5. (set @default-dest "")
  6.  
  7. (set pplib "powerpacker.library")
  8. (set reqtoolslib "libs20/reqtools.library")
  9.  
  10. ;=============================================================================
  11. ; English strings
  12.  
  13. (set #copying-powerpacker    "Copying powerpacker.library to Libs:...")
  14. (set #copying-reqtools     "Copying reqtools.library to Libs:...")
  15.  
  16. (set #install-msg
  17. (cat "\n\nPowerPacker library installation script.\n"
  18.      "This script installs powerpacker.library\n"
  19.      "on your Amiga.\n\n"
  20.      "Read the documentation for more information\n"
  21.      "on the distribution of powerpacker.library.\n\n"
  22.      "© 1991-1993 Nico François\n"
  23.      "All rights reserved."
  24. ))
  25.  
  26. ;=============================================================================
  27.  
  28. (message #install-msg)
  29.  
  30. (copylib
  31.     (prompt "\n" #copying-powerpacker)
  32.     (help @copylib-help)
  33.     (source pplib)
  34.     (dest "Libs:")
  35.     (confirm)
  36. )
  37.  
  38. (if (< (/ (getversion) 65536) 37) (set reqtoolslib "libs13/reqtools.library"))
  39.  
  40. (copylib
  41.     (prompt "\n" #copying-reqtools)
  42.     (help @copylib-help)
  43.     (source reqtoolslib)
  44.     (dest "Libs:")
  45.     (confirm)
  46. )
  47.