home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / wbgames / tictacamiga / install_tta < prev    next >
Text File  |  1977-12-31  |  2KB  |  97 lines

  1. ; Installer-Script of TicTacAMIGA v1.5a and better
  2. ; The TTA package (the executable, the guides, the install-script and 
  3. ; the catalogs) is copyright 1993-1995 by Jens Tröger
  4.  
  5. ; $VER TTA v1.6a (09.03.95)
  6.  
  7. (COMPLETE 0)
  8.  
  9. (IF (= @language "deutsch")
  10.    (
  11.       (SET no_v37 (CAT "Es wird mindestens OS2 (v37) oder besser benötigt"))
  12.       (SET msg_0 (CAT "\nTicTacAMIGA Installer script.\n\n"
  13.               "Hiermit können Sie TTA auf Ihrem AMIGA installieren\n\n"
  14.               "Hinweis: lesen Sie bitte das Guide, bevor Sie TTA starten !"
  15.               "\n\nDas TTA-Packet ist © 1993-1995 by Jens Tröger\n"
  16.               "Alle Rechte vorbehalten."
  17.               "\n\nNotiz: das Guide wird nicht installiert !"))
  18.       (SET msg_1 (CAT "Zeilverzeichnis auswählen..."))
  19.       (SET done (CAT "OK, das wär`s - Installation abgeschlossen"
  20.              "\n\nViel Spaß mit TTA !"))
  21.    )
  22.    (
  23.       (SET no_v37 (CAT "You need OS2 (v37) or better to run"))
  24.       (SET msg_0 (CAT "\nTTA Installer script.\n\n"
  25.               "This will install TTA on your AMIGA\n\n"
  26.               "Indication: read the guide before you run TTA !"
  27.               "\n\nThe TTA-package is © 1993-1995 by Jens Tröger\n"
  28.               "All rights reserved."
  29.               "\n\nNote: the guide won`t be installed !"))
  30.       (SET msg_1 (CAT "Select destination drawer..."))
  31.       (SET done (CAT "OK, that`s all - installation complete"
  32.              "\n\nHave fun with TTA !"))
  33.    )
  34. )
  35.  
  36. (IF (< (/ (GETVERSION) 65536) 37)
  37.    (
  38.       (ABORT no_v37)
  39.    )
  40. )
  41.  
  42. (MESSAGE msg_0)
  43.  
  44. (SET destdir
  45.    (ASKDIR
  46.       (PROMPT "\n" msg_1)
  47.       (HELP @askdir-help)
  48.       (DEFAULT "SYS:GAMES/")
  49.    )
  50. )
  51.  
  52. (COPYFILES
  53.    (SOURCE "TicTacAMIGA")
  54.    (DEST destdir)
  55.    (INFOS)
  56. )
  57.  
  58. (COMPLETE 33)
  59.  
  60. (IF (= @language "deutsch")
  61.    (
  62.       (COMPLETE 66)
  63.       (COPYFILES
  64.      (SOURCE "catalogs/deutsch/tictacamiga.catalog")
  65.      (DEST "locale:catalogs/deutsch/")
  66.      (INFOS)
  67.       )
  68.    )
  69.    (
  70.       (IF (= @language "nederland")
  71.      (
  72.         (COMPLETE 66)
  73.         (COPYFILES
  74.            (SOURCE "catalogs/nederlands/tictacamiga.catalog")
  75.            (DEST "locale:catalogs/nederlands/")
  76.            (INFOS)
  77.         )
  78.      )
  79.      (
  80.         (COMPLETE 66)
  81.      )
  82.       )
  83.    )
  84. )
  85.  
  86. (COPYFILES
  87.    (SOURCE "TicTacAMIGA.config")
  88.    (DEST "ENVARC:")
  89.    (INFOS)
  90. )
  91.  
  92. (COMPLETE 100)
  93.  
  94. (EXIT done)
  95.  
  96.  
  97.