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

  1. ; APrint (V3.2) Installerscript (c) by PackMAN 29.09.96
  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.2 <  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.2")
  37.     (source "")
  38.     (help "...")
  39.     (dest (tackon name "APrint"))
  40.     (pattern "~(Libs|Install_Eng|Installiere_Dt|APrint.Dt.guide|Install_Eng.info|Installiere_Dt.info|APrint.Dt.guide.info)")
  41.     (infos)
  42.     (confirm)
  43. )
  44.  
  45. (TOOLTYPE (DEST (tackon name "APrint/APrint"))
  46.           (SETTOOLTYPE "GERMAN" "NO")
  47. )
  48.  
  49. (copylib
  50.     (prompt "Install Reqtools.library ?")
  51.     (help @copyfiles-help)
  52.     (source "Libs/reqtools.library")
  53.     (dest "Libs:")
  54.     (safe)
  55.     (confirm)
  56. )
  57.  
  58. (copylib
  59.     (prompt "Install XPKMaster.library ?")
  60.     (help @copyfiles-help)
  61.     (source "Libs/xpkmaster.library")
  62.     (dest "Libs:")
  63.     (safe)
  64.     (confirm)
  65. )
  66.  
  67. (copylib
  68.     (prompt "Install Libs:compressors/xpkENCO.libary ?")
  69.     (help @copyfiles-help)
  70.     (source "Libs/compressors/xpkENCO.library")
  71.     (dest "Libs:compressors/")
  72.     (safe)
  73.     (confirm)
  74. )
  75.