home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Editor / tbf-g471.lha / ged471u / Install < prev    next >
Encoding:
Text File  |  1997-05-22  |  2.5 KB  |  88 lines

  1. ; $VER: 5
  2.  
  3. (delopts "oknodelete" "force" "askuser")
  4. (complete 0)
  5.  
  6. (if (exists "GOLDED:" (NOREQ))
  7.  
  8.     (
  9.         (set vernum (getversion "golded:golded"))
  10.  
  11.         (set ver (/ vernum 65536))
  12.         (set rev (- vernum (* ver 65536)))
  13.  
  14.         (set version (+ (* 10 ver) rev))
  15.  
  16.         (if (< version 47)
  17.  
  18.             (
  19.                 (message "\nSorry, GoldED Release 4.7.0 or better required")
  20.                 (exit (quiet))
  21.             )
  22.         )
  23.  
  24.         (message (cat "\n"
  25.  
  26.             " GoldED 4 · Service Pack 4.7.1                    \n"
  27.             "                                                  \n"
  28.             " Upgrades GoldED 4.7.0 to GoldED 4.7.1            \n"
  29.             "                                                  \n"
  30.             " GoldED is not freely distributable.              \n"
  31.             " Distribution on CD-ROM not permitted.            \n"
  32.             " A GoldED distribution licence can be             \n"
  33.             " purchased from the copyright owner(s).           \n"
  34.             " Please read the licence file before              \n"
  35.             " you install the software.                        \n"
  36.             "                                                  \n"
  37.             " ©1997 Dietmar Eilert · All Rights Reserved.      \n"
  38.  
  39.         ))
  40.  
  41.         ; check installation
  42.  
  43.         (run "bin/checksetup")
  44.  
  45.          ; don't install over OEM version (unless registered)
  46.  
  47.         (if (exists "t:setup.inf")
  48.  
  49.             (message (cat "\n"
  50.  
  51.                 " This update should not be installed over the un- \n"
  52.                 " registered OEM version you are using. Return     \n"
  53.                 " the registration card and install your personal  \n"
  54.                 " keyfile before you proceed.                      \n"
  55.                 "                                                  \n"
  56.                 " You may continue installation at this point      \n"
  57.                 " without registration. However, the update will   \n"
  58.                 " then install as restricted trial version only.   \n"
  59.             ))
  60.         )
  61.  
  62.         (copyfiles
  63.  
  64.             (source  "golded" )
  65.             (dest    "golded:")
  66.             (infos)
  67.             (all)
  68.             (nogauge)
  69.         )
  70.  
  71.         (delete "golded:.info")
  72.  
  73.         (complete 100)
  74.  
  75.         (message "\nInstallation complete.")
  76.     )
  77.  
  78.     (message (cat "\n"
  79.  
  80.         "Please install GoldED before attempting to\n"
  81.         "install this client.                      \n"
  82.     ))
  83. )
  84.  
  85. (exit (quiet))
  86.  
  87. (welcome)
  88.