home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #3 / amigamamagazinepolishissue1998.iso / bazy / aprint / install_aprint < prev    next >
Text File  |  1994-12-29  |  2KB  |  96 lines

  1. ; APrint-Installerscript 30.11.94 © by PackMAN
  2.  
  3. (set #notV37
  4. (cat "» APrint « benötigt OS2 (V37.175) oder höher..."))
  5.  
  6. (set #msg
  7. (cat "\n\n"
  8.      " » APrint «  Installer script.\n\n"
  9.      "Dieses Script installiert » APrint V2.22 « auf Ihrem Amiga.\n\n"
  10.      "APrint © 1993-1994 Falk Zühlsdorff\n"
  11.      "All rights reserved."))
  12.  
  13. (set #0
  14. (cat "Ziellaufwerk auswählen..."))
  15. (set #1
  16. (cat "Verzeichnis: APrint anlegen ?"))
  17.  
  18. ;=============================================================================
  19. ; OS2 ?
  20.  
  21. (if (< (/ (getversion) 65536) 37)
  22. (
  23.     (abort #notV37)
  24. ))
  25.  
  26. ;=============================================================================
  27.  
  28. (message #msg)
  29. (welcome)
  30.  
  31. (set name
  32.     (askdir
  33.         (prompt "\n" #0)
  34.         (help @askdir-help)
  35.         (default "SYS:")
  36.     )
  37. )
  38. (makedir (tackon name "APrint")
  39.     (prompt "\n\n\n\n\n" #1)
  40.     (help "Ist bei Erstinstallation sinnvoll")
  41.     (infos)
  42.     (confirm)
  43. )
  44. (copyfiles
  45.     (prompt "APrint Hauptdatei")
  46.     (help "Die Datei ist wohl nötig !!")
  47.     (source ":APrint/APrint")
  48.     (dest (tackon name "APrint"))
  49.     (infos)
  50.     (confirm)
  51. )
  52. (copyfiles
  53.     (prompt "APrint Dokumentation")
  54.     (help "Würde ich auch installieren...")
  55.     (source ":APrint/APrint.DOK")
  56.     (dest (tackon name "APrint"))
  57.     (infos)
  58.     (confirm)
  59. )
  60. (copyfiles
  61.     (prompt "Beispieladressen von APrint")
  62.     (help "Sind auch einige interessante Adressen darin...")
  63.     (source ":APrint/Bsp.ap")
  64.     (dest (tackon name "APrint"))
  65.     (infos)
  66.     (confirm)
  67. )
  68. (copyfiles
  69.     (prompt "PURITY-Pascal-PD-Serie INTERESSANT !!!!!")
  70.     (help "the best of PASCAL...")
  71.     (source ":APrint/PURITY-PD")
  72.     (dest (tackon name "APrint"))
  73.     (infos)
  74.     (confirm)
  75. )
  76. (copyfiles
  77.     (prompt "Reqtools.library installieren ?")
  78.     (help "Zum Start von APrint nötig...")
  79.     (source ":APrint/Libs/reqtools.library")
  80.     (dest "Libs:")
  81.     (confirm)
  82. )
  83. (copyfiles
  84.     (prompt "Textanzeiger ZMore")
  85.     (help "Installieren oder Defaulttools der Icons ändern...")
  86.     (source ":APrint/C/ZMore")
  87.     (dest "C:" )
  88.     (confirm)
  89. )
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.