home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Exec 3 / CD_Magazyn_EXEC_nr_3.iso / Programy / Biblioteki / ppclibemu07.lha / Installer_Script < prev    next >
Text File  |  1999-12-10  |  1KB  |  59 lines

  1. ; $VER: PPCLibEmuInstall Version 1.0 (23.04.99)
  2.  
  3. (complete 0)
  4.  
  5. (message "\n\nInstall script for PPCLibEmu V0.7\n\n"
  6.          "Software by Frank Wille\n"
  7.          "frank@phoenix.owl.de\n\n"
  8.          "This script by Dominic Clifton\n"
  9.          "hydrasmail@usa.net\n")
  10.  
  11. ;(welcome)
  12.  
  13. (set #folder "SYS:")
  14.  
  15. (complete 10)
  16.  
  17. (message "\n\nSetting environment variables\n"
  18.          "ENV:PowerPC/Terminator 0\n"
  19.          "ENV:PowerPC/noPatch 1")
  20.  
  21. (set destenvarc (tackon "envarc:" "PowerPC"))
  22. (set destenv (tackon "env:" "PowerPC"))
  23. (if
  24.    (= (exists destenvarc) 0)
  25.     (
  26.       (makedir destenvarc (infos))
  27.       (makedir destenv (infos))
  28.     )
  29. )
  30.  
  31. (run "setenv PowerPC/Terminator 0")
  32. (run "copy ENV:PowerPC/Terminator ENVARC:PowerPC")
  33. (run "setenv PowerPC/nopatch 1")
  34. (run "copy ENV:PowerPC/nopatch ENVARC:PowerPC")
  35.  
  36. (if
  37.    (= (exists "libs:ppc.library") 1)
  38.     (
  39.       (message "\n\nBacking up libs:ppc.library as\n"
  40.                "libs:ppc.library.orig")
  41.  
  42.       (run "copy libs:ppc.library libs:ppc.library.orig")
  43.     )
  44. )
  45. (complete 50)
  46.  
  47. (copylib
  48.            (prompt  "Copy ppc.library to libs")
  49.            (help    "Required for installation")
  50.            (source  (tackon (pathonly @icon) "ppc.library"))
  51.            (dest    "libs:")
  52.            (confirm)
  53. )
  54.  
  55. (complete 100)
  56.  
  57. (exit "Done, please reboot!\n"
  58.       "If you have an BlizzardPPC consult the docs" (quiet))
  59.