home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Printer / hf-ap31k.lha / APrint / Install_Eng < prev    next >
Encoding:
Text File  |  1996-03-10  |  1.1 KB  |  62 lines

  1. ; APrint (V3.1) Installerscript (c) by PackMAN
  2.  
  3. (set #notV37
  4. (cat "APrint needs OS2.x (V37.175) or higher..."))
  5.  
  6. (set #msg
  7. (cat "\n\n"
  8.      " > APrint V3.1 <  Installer script.\n\n"
  9.      "APrint © 1993-1996 Falk Zühlsdorff\n"
  10.      "All rights reserved."))
  11.  
  12. (set #0
  13. (cat "Select Drawer..."))
  14.  
  15. ;=============================================================================
  16. ; OS2 ?
  17.  
  18. (if (< (/ (getversion) 65536) 37)
  19. (
  20.     (abort #notV37)
  21. ))
  22.  
  23. ;=============================================================================
  24.  
  25. (message #msg)
  26. (welcome)
  27.  
  28. (set name
  29.     (askdir
  30.         (prompt "\n" #0)
  31.         (help @askdir-help)
  32.         (default "SYS:")
  33.     )
  34. )
  35. (copyfiles
  36.     (prompt "APrint V3.1")
  37.     (source "")
  38.     (help "...")
  39.     (dest (tackon name "APrint"))
  40.     (pattern "#?")
  41.     (infos)
  42.     (confirm)
  43. )
  44. (TOOLTYPE (DEST (tackon name "APrint/APrint"))
  45.           (SETTOOLTYPE "GERMAN" "NO")
  46. )
  47. (copyfiles
  48.     (prompt "Install Libraries ?")
  49.     (help @copyfiles-help)
  50.     (pattern "#?")
  51.     (source "Libs/")
  52.     (dest "Libs:")
  53.     (confirm)
  54. )
  55. (copyfiles
  56.     (prompt "Textviewer ZMore")
  57.     (help "...")
  58.     (source "ZMore")
  59.     (dest "C:" )
  60.     (confirm)
  61. )
  62.