home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / mar94 / util / pack / packit.lha / PackIt / Install_PackIt < prev    next >
Text File  |  1993-12-19  |  494b  |  30 lines

  1. ; Installation script for PackIt
  2.  
  3. (transcript "Installing PackIt...")
  4.  
  5. (copylib
  6.         (prompt "Install PowerPacker library.")
  7.         (help @copylib-help)
  8.         (source "LIBS/powerpacker.library")
  9.         (dest "libs:")
  10.         (confirm)
  11. )
  12.  
  13. (set name
  14.         (askdir
  15.                 (prompt "Install PackIt where?")
  16.                 (help @askdir-help)
  17.                 (default "C:")
  18.         )
  19. )
  20.  
  21. (copyfiles
  22.         (source "PackIt")
  23.         (dest name)
  24. )
  25.  
  26. (set @default-dest name)
  27.  
  28. (exit)
  29.  
  30.