home *** CD-ROM | disk | FTP | other *** search
/ Amiga Power / AmigaPower37Disk1.ZIP / ap37-1.adf / s / startup-sequence < prev   
Text File  |  1994-03-24  |  1KB  |  49 lines

  1. c:Initlib >NIL:
  2. s:APmenu
  3.  
  4. Failat 21
  5. if not exists Banshee
  6.     echo "*n    Please boot from the install disk*nor start the install from the workbench.*n"
  7.     quit
  8. endif
  9. echo "*ec*n*e[1;32m    _____________________________________________________________________"
  10. echo "    *e[43m                                                                     *e[0m"
  11. echo "    *e[0;32;43m                        Installer for Banshee          *e[1m              *e[0m"
  12. echo "    *e[1;4;43m                                                                     *e[0m*n*n"
  13. echo " This installer script is meant to be run on a WB3.0+ system, Therefore you"
  14. echo " shouldn't even be able to get this far on a WB1.3 :-( system. Upgrade now,"
  15. echo " it's well worth it!*n"
  16. echo " This installation will create its own directory called 'Banshee' wherever"
  17. echo " the specified install device is set to eg. DH0: DH1: RAM: etc. Use device"
  18. echo " names only.*n"
  19.  
  20. assign t: ram:
  21. assign env: ram:
  22.  
  23. lab loop
  24. echo noline " Where shall I install Banshee? (a=abort) : "
  25.  
  26. get >nil: Device
  27. if not warn
  28.     unset Device
  29. endif
  30.  
  31. set > nil: Device ?
  32.  
  33. if $Device eq "a"
  34.     echo noline "*n*e[32m Install aborted.*n*e[0m"
  35.     quit
  36. endif
  37.  
  38. if not exists $Device
  39.     echo "The Install path can't be found.*n"
  40.     skip back loop
  41. endif
  42.  
  43. copy noreq all Banshee#? $Device
  44. echo " Done.*n*n"
  45. echo "To Run enter:"
  46. echo " assign bans: [Device]:Banshee (Return)   eg. assign bans: ram:banshee"
  47. echo " bans:banshee (Return)"
  48. echo "*nInstaller by Grants Computing.*n"
  49.