home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Disk&HD / RMD-E215.LHA / enigmaii_project / enigmaii_install_script < prev    next >
Encoding:
Text File  |  1994-08-25  |  2.7 KB  |  130 lines

  1. ; $VER: Install EnigmaII 
  2. ;
  3. ;    Installer script for EnigmaII.
  4. ;    
  5.  
  6.     (complete 0)
  7.     (welcome)
  8.  
  9.     (set #WrongKickStart "\nYou must be using at least KickStart 2.04 to use EnigmaII Project")
  10.     (set #CopyingReqTools "Copying ReqTools.library to Libs:")
  11.     (set #Lamer "Fuck of, Lamer!\n\nLAME Intermediate\n and \nLAME novice users\n don't need thiz cool tool!")
  12.  
  13.     (if (< (/ (getversion) 65536) 37)
  14.       (abort #WrongKickStart)
  15.     )
  16.  
  17.     (if(<> 2 @user-level)
  18.        (abort #Lamer)
  19.     )
  20.     (message "\nWelcome to the installation\n"
  21.               "of the most powerfull -and only- realtime\n"
  22.           "(de-)cyrpter written on the Amiga.\n\n\n"
  23.           "Done by\n\n"
  24.           "Harvester & Hosot\n\n"
  25.           "of\n\n"
  26.           "R-E-M-E-D-Y")
  27.  
  28.     (message
  29.       "\n"
  30.       "The EnigmaII Project\nrequires the ReqTools.library to run.\n"
  31.       "\n"
  32.       "Before I install it I'll check to see if you have already a "
  33.       "more recent version of the ReqTools.library.\n"
  34.       "If so, I will not overwrite it.\n"
  35.     )
  36.  
  37.     (copylib
  38.       (prompt "\n" #CopyingReqTools)
  39.       (help @copylib-help)
  40.       (source "Libs/reqtools.library")
  41.       (dest "Libs:")
  42.       (confirm)
  43.     )
  44.     (complete 20)
  45.  
  46.     (if(askbool
  47.         (prompt "\n Do you also want\n ReqToolsPrefs \nto be installed ?\n\n"
  48.             "(With it you can e.g change size/position\n"
  49.              "of requesters being opened.)")
  50.             (help @askbool_help)
  51.          (default 1)) 
  52.         (copyfiles 
  53.              (prompt "\nCopy the Reqtools-Prefs...\n")
  54.                (help @copyfiles-help)
  55.             (source "Prefs")
  56.             (dest   "SYS:Prefs")
  57.          (all)
  58.          (files)
  59.              (infos)
  60.              (confirm)
  61.          )
  62.     )
  63.     (complete 40)
  64.     (message
  65.       "\n"
  66.       "Now I will copy executable files\n"
  67.       "of EnigmaII Project to your\n"
  68.       " C: Directory"
  69.     )
  70.  
  71.     (copyfiles
  72.       (prompt "\nSelect which files to install:\n")
  73.       (help @copyfiles-help)
  74.       (source "C")
  75.       (dest   "C:")
  76.       (choices "EnigmaRun"
  77.            "EnigmaInit"
  78.            "WaitForCrypter"
  79.            "CrypterActive"
  80.                "ExeLink")
  81.       (confirm)
  82.     )
  83.     (complete 80)
  84.  
  85.     (message
  86.       "\n"
  87.       "The scriptfile of\n"
  88.       "EnigmaII Project will\n"
  89.       "be copied to your\n"
  90.       "S: Directory"
  91.     )
  92.     
  93.      (copyfiles
  94.       (prompt "\nCopying ScriptFile:\n")
  95.       (help @copyfiles-help)
  96.       (source "S")
  97.       (dest   "S:")
  98.       (all)
  99.       (files)    
  100.       (confirm)
  101.      )
  102.  
  103.      (complete 90)
  104.  
  105.     (message
  106.       "\n"
  107.       "Now the most important thing.\n\n"
  108.       "The documentation has to be copied\n\n\n"
  109.       "(I suggest to read this carefully!)\n"
  110.     )
  111.      (copyfiles
  112.       (prompt "\nCopy the Docs ...\n")
  113.       (help @copyfiles-help)
  114.       (source "DOCS")
  115.       (dest   "SYS:")
  116.       (all)
  117.       (files)    
  118.       (infos)
  119.       (confirm)
  120.      )
  121.  
  122.     (complete 100)
  123.     (message
  124.        "\n\n\n"
  125.       "Now read the Doc's\n\n"
  126.     )
  127.  
  128.      (set @default_dest "S:")
  129.      (exit)
  130.