home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / new / util / misc / publican / install_publican < prev    next >
Text File  |  1992-09-02  |  481b  |  30 lines

  1. ; Publican install script for CBM Installer
  2. ;$VER: Publican_install 1.0
  3. ;$AUTHOR: Lee Kindness
  4.  
  5. (set name
  6.     (askdir
  7.         (prompt 'Where will Publican be copied to?')
  8.         (help 'This is where you want Publican to be located.\n\n'@askdir-help)
  9.         (default 'C:')
  10.     )
  11. )
  12.  
  13. (set @default-dest name)
  14.  
  15. (copyfiles
  16.     (help @copyfiles-help)
  17.     (source 'Publican')
  18.     (dest name)
  19. )
  20.  
  21. (transcript '\nPublican installed to '@default-dest'\n')
  22.  
  23. (exit 'I hope you find Publican useful.\n    LSK _\\\\//')
  24.  
  25.     
  26.  
  27.  
  28.  
  29.  
  30.