home *** CD-ROM | disk | FTP | other *** search
/ Amiga ACS 1998 #2 / amigaacscoverdisc1998-021998.iso / utilities / shareware / graphics / micropaint / install-micropaint_ger < prev    next >
Encoding:
Text File  |  1997-02-16  |  1.2 KB  |  53 lines

  1. ; $VER: InstallMicroPaint 1.01
  2. ; FR-SoftWorks MicroPaint Installer Script
  3. ; Copyright © FR-SoftWorks 1997
  4.  
  5. (working "Installiere MicroPaint")
  6.  
  7. (set DestDir
  8.    (askdir
  9.       (prompt "Wohin möchten Sie MicroPaint installieren?")
  10.       (help "Eine Schublade für das Programm wird automatisch erstellt.")
  11.       (default "SYS:")
  12.    )
  13. )
  14.  
  15. (set DestDir (expandpath DestDir))
  16. (set @default-dest (tackon DestDir "MicroPaint"))
  17.  
  18. (makedir @default-dest (infos))
  19.  
  20. (copyfiles
  21.    (source "dist")
  22.    (dest @default-dest)
  23.    (all)
  24.    (infos)
  25. )
  26.  
  27. (copyfiles
  28.     (prompt "Kopiere CBSI")
  29.     (help "CBSI steht für 'Crossbones Systeminformation'.\n\nDieses Utility untersucht unter anderem:\n\n· Prozessor, Coprozessor\n· Grafikchipsatz\n· Betriebssystem\n· Geschwindigkeit des Computers\n· Datendurchsatz der Festplatte")
  30.     (source "GER")
  31.     (dest "C:")
  32.     (all)
  33.     (infos)
  34.     (optional "nofail" "force")
  35.     (confirm)
  36. )
  37.  
  38. (copyfiles
  39.     (prompt "Kopiere Katalogdateien")
  40.     (help "Die Katalogdateien müssen dann installiert werden, wenn die Benutzeroberfläche nicht in englischer Sprache erscheinen soll.")
  41.     (source "Catalogs")
  42.     (dest "LOCALE:Catalogs")
  43.     (all)
  44.     (infos)
  45.     (optional "nofail" "force")
  46.     (confirm)
  47. )
  48.  
  49. (message "\nInstallation abgeschlossen.\n")
  50.  
  51. (exit (quiet))
  52.  
  53.