home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format 59 / af059a.adf / Install-InterBase < prev    next >
Text File  |  1994-04-08  |  876b  |  34 lines

  1. ;script to install InterBase
  2. (complete 0)
  3. (copyfiles
  4.    (prompt "copying required files to Ram")
  5.    (source "AF59a:C/lha")
  6.    (dest "Ram:")
  7. )
  8. (copyfiles
  9.    (prompt "copying required files to Ram")
  10.    (source "AF59a:inter.lha")
  11.    (dest "Ram:")
  12. )
  13.  
  14. (complete 20)
  15. (set destdir 
  16.    (askdir 
  17.       (default "RAM:")
  18.       (prompt "In which drawer should InterBase be installed?")
  19.       (help "Use the requestor to select a destination directory") 
  20.    )
  21. )
  22. (set @default-dest destdir)
  23. (set archi
  24.    ( "ram:lha x ram:inter #? \"%s/\"" destdir)
  25. )
  26. (debug "Archi looks like" archi)
  27. (complete 60)
  28. (run archi)
  29. (delete "ram:lha")
  30. (delete "ram:inter.lha")
  31. (message "InterBase has now been installed. If you have installed it to a floppy disk, you should now rename the floppy to 'InterBase'. If you have installed it to a hard drive you should run the Install program")
  32. (complete 100)
  33. (exit)
  34.