home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaDemoCD1.iso / DEMOS / MYSTIC-TradePack47.dms / in.adf / Install_AGAtales < prev    next >
Encoding:
Text File  |  1995-03-09  |  1.3 KB  |  50 lines

  1. ;This script installs a onefile production by Focus Design to a (new)
  2. ;drawer in a selected partiton or drawer called "FOCUS_DESIGN_PRODUCTIONS"
  3. ;
  4. ;(c) Lars "Easy" Strange 1995 (Do NOT make any changes to this script).
  5. ;
  6.  
  7. (set @default-dest "Work:")
  8. (set FD_production "AGAtales.exe")
  9. (set FD_prodinfo "AGAtales.exe.info")
  10. (set min_mem "250k")
  11.  
  12. (set #install-msg
  13. (cat ("\n\n--- Focus Design installation script ---\n\nThis script installs \%s\ on your\nAmiga Harddrive.\n\n%s needs atleast %s free space on your harddrive. \n\n\nFocus Design 1995" FD_production FD_production min_mem)))
  14.  
  15. (set #where-fd
  16. (cat ("Where shall I place %s\n(A new drawer will be created)"FD_production)))
  17.  
  18. (message #install-msg)
  19.  
  20. (set destdir 
  21.    (tackon
  22.       (askdir
  23.          (prompt #where-fd)
  24.          (help @askdir-help)
  25.          (default @default-dest)
  26.  
  27.       )
  28.       "Focus_Design_Productions"
  29.    )
  30. )
  31.  
  32. (set #copying-fd_prod ("Copying %s... to %s" FD_production destdir))
  33. (set #copying-fd_info ("Copying %s... to %s" FD_prodinfo destdir))
  34.  
  35. (makedir (destdir) (infos))
  36.  
  37. (copyfiles
  38.    (prompt "\n" #copying-fd_prod)
  39.    (source FD_production)
  40.    (dest destdir)
  41. )
  42.  
  43. (copyfiles
  44.    (prompt "\n" #copying-fd_info)
  45.    (source FD_prodinfo)
  46.    (dest destdir)
  47. )
  48.  
  49. (message ("\n\n\n%s installation completed!\n\nYou can find %s in \n \%s\ \n\n\nEnjoy!\n\nFocus Design 1995" FD_production FD_production destdir))
  50.