home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 29 / amigaformatcd29.iso / -coverdisks- / 113a / warpwb / install / deutsch next >
Text File  |  1998-06-08  |  1KB  |  65 lines

  1.  
  2. ;Installer script für WarpWB 1.2 oder höher
  3.  
  4. ;WarpWB von Marcus Tobias
  5.  
  6. (transcript "Install WarpWB")
  7.  
  8. (set #dir
  9.     (askdir
  10.         (prompt "Wo soll WarpWB installiert werden?")
  11.         (help @askdir-help)
  12.         (default "SYS:WBStartup")
  13.     )
  14. )
  15.  
  16. (set #docs
  17.     (askdir
  18.         (prompt "Wohin soll die deutsche Anleitung kopiert werden?")
  19.         (help @askdir-help)
  20.         (default "HELP:")
  21.     )
  22. )
  23.  
  24. (copyfiles
  25.     (prompt "Kopiere WarpWB")
  26.     (help @copyfiles-help)
  27.     (source "/")
  28.     (dest #dir )
  29.         (choices "WarpWB")
  30. )
  31.  
  32. (copyfiles
  33.     (prompt "Kopiere WarpWB.info")
  34.     (help @copyfiles-help)
  35.     (source "/")
  36.     (dest #dir )
  37.         (choices "WarpWB.info")
  38. )
  39.  
  40.  
  41. (copyfiles
  42.     (prompt "Kopiere WarpWB_GER.guide")
  43.     (help @copyfiles-help)
  44.     (source "/Documents")
  45.     (dest #docs )
  46.         (choices "WarpWB_GER.guide")
  47. )
  48.  
  49. (copyfiles
  50.     (prompt "Kopiere WarpWB_GER.guide.info")
  51.     (help @copyfiles-help)
  52.     (source "/Documents")
  53.     (dest #docs )
  54.         (choices "WarpWB_GER.guide.info")
  55. )
  56.  
  57. (copylib
  58.     (prompt "Kopiere lowlevel.library nach LIBS:")
  59.     (help @copylib-help)
  60.     (source "/libs/lowlevel.library")
  61.     (dest "LIBS:")
  62.     (confirm)
  63. )
  64. (message "Ok, Viel Spaß noch mit WarpWB!")
  65.