home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Database / fdata11.dms / in.adf / HDInstall < prev    next >
Encoding:
Text File  |  1994-08-18  |  5.7 KB  |  246 lines

  1. ;;
  2. ;;  $Filename: HDInstall $
  3. ;;  $Date: 1994/08/18 09:59:38 $
  4. ;;  $Revision: 1.3 $
  5. ;;
  6.  
  7. (set is_update 0)
  8. (set @user-level 1)    ; force to use average mode
  9. (complete 0)
  10.  
  11. (set FD_dest
  12.     (askdir
  13.         (prompt "In which disk or drawer should the "
  14.                     "Final Data drawer be created in?")
  15.         (help "The installation utility will create a drawer named "
  16.             "\"FinalData\" in the selected drawer or directory.  All "
  17.             "Final Data files and drawers will be placed inside "
  18.             "the new directory.\n\n"
  19.             "A tip for advanced users:\n"
  20.             "The \"FinalData\" directory may be moved as long as "
  21.             "the sub-directories FDFiles, FDFonts, and FDLibs "
  22.             "are also moved to the same location.")
  23.         (default @default-dest)
  24.     )
  25. )
  26.  
  27. ; Check if this is an update
  28. ; the FDLibs directory is a tell-tale sign
  29. ; that FD is already installed here
  30. (if (exists (tackon FD_dest "FDLibs"))
  31.     (set is_update 1)
  32.     (    (if (exists (tackon FD_dest "FinalData"))
  33.             (set is_update 1)
  34.             (makedir (tackon FD_dest "FinalData") (infos))
  35.         )
  36.         (set FD_dest (tackon FD_dest "FinalData"))
  37.     )
  38. )
  39.  
  40. (set @default-dest FD_dest)
  41. (set disk_space (getdiskspace FD_dest))
  42.  
  43. (set disk_space_needed 500000)
  44.  
  45. (if (AND (< disk_space disk_space_needed) (NOT is_update))
  46.     (
  47.         (set answer1
  48.             (askbool
  49.                 (prompt    "There may not be enough room available on "
  50.                             "this drive to install \"Final Data\". "
  51.                             "Do you wish to continue?")
  52.                 (help    "Final Data needs approximately .5 megabytes of "
  53.                         "disk space for a complete installation or .5 megabytes "
  54.                         "for a minimal installation. If Final Data is already "
  55.                         "installed on this partition, you may wish to continue. "
  56.                         "Otherwise, press ABORT or NO now and either free some "
  57.                         "space on this partition or select a different partition "
  58.                         "for the installation.")
  59.             )
  60.         )
  61.         (if (NOT answer1)
  62.             (abort "Final Data installation cancelled. Not enough disk "
  63.                     "space on Volume \""
  64.                     (getdevice @default-dest)
  65.                     "\"."
  66.             )
  67.         )
  68.     )
  69. )
  70.  
  71. ; Allow updating user to select what they want updated
  72. (if is_update
  73.     ; YES - already installed
  74.     (set install_options
  75.         (askoptions
  76.             (prompt "What parts would you like to update?")
  77.             (help @askoptions-help)
  78.             (choices
  79.                 "Final Data Program"
  80.                 "ARexx Macros"
  81.                 "Sample Data Files"
  82.                 "System Files"
  83.                 "System Libraries"
  84.                 "System Fonts")
  85.             (default 25)        ; default to 0001-1001 = (1)Program, (8)Sys Files and (16)Libraries
  86.         )
  87.     )
  88.  
  89.     ; NO - First time install
  90.         (set install_options 63)    ; hex 3F - 0011-1111 - all six options on
  91. )
  92.  
  93. (set error 0)
  94.  
  95. ; Installing Files from FDProgram
  96. (if (IN install_options 0 1 2 3 4 5)
  97.     (
  98.         ; -----------------
  99.         ; Copy the More program to the hard drive
  100.         ; so everyone is guaranteed to have it.
  101.         ; -----------------
  102.         (if (NOT is_update)
  103.             (copyfiles
  104.                 (source "FDProgram:More")
  105.                 (dest FD_dest)
  106.             )
  107.         )
  108.         ; -----------------
  109.         ; If installing/updating the program
  110.         ; -----------------
  111.         (if (IN install_options 0)
  112.             (
  113.                 ; ----- COPY the Final Data program over
  114.                 (working "Installing Final Data program from FDProgram disk.")
  115.                 (copyfiles
  116.                     (source "FDProgram:FinalData")
  117.                     (dest FD_dest)
  118.                 )
  119.                 ; ----- COPY the Final Data .info if the icon doesn't exists
  120.                 (if (NOT (exists (tackon FD_dest "FinalData.info")))
  121.                     (copyfiles
  122.                         (source "FDProgram:FinalData.info")
  123.                         (dest FD_dest)
  124.                     )
  125.                 )
  126.             )
  127.         )
  128.         (complete 50)
  129.  
  130.  
  131.         ; -----------------
  132.         ; Installing FDMacros
  133.         ; -----------------
  134.         (if (IN install_options 1)
  135.             (
  136.                 ; ----- CREATE FDMacros if it doesn't exist.
  137.                 (if (NOT (exists (tackon FD_dest "FDMacros")))
  138.                     (
  139.                     (makedir (tackon FD_dest "FDMacros") (infos))
  140.                     )
  141.                 )
  142.                 (working "Installing ARexx Macros from FDProgram disk.")
  143.                 (copyfiles
  144.                     (source "FDProgram:FDMacros")
  145.                     (dest (tackon FD_dest "FDMacros"))
  146.                     (all)
  147.                 )
  148.             )
  149.         )
  150.         (complete 60)
  151.  
  152.  
  153.         ; -----------------
  154.         ; Installing FDData
  155.         ; -----------------
  156.         (if (IN install_options 2)
  157.             (
  158.                 ; If FDData doesn't exist, create it.
  159.                 (if (NOT (exists (tackon FD_dest "FDData")))
  160.                     (
  161.                     (makedir (tackon FD_dest "FDData") (infos))
  162.                     )
  163.                 )
  164.                 (working "Installing Sample Data from FDProgram disk.")
  165.                 (copyfiles
  166.                     (source "FDProgram:FDData")
  167.                     (dest (tackon FD_dest "FDData"))
  168.                     (all)
  169.                 )
  170.             )
  171.         )
  172.         (complete 70)
  173.  
  174.         ; -----------------
  175.         ; Installing FDFiles (make dir, do not copy .prefs)
  176.         ; -----------------
  177.         (if (IN install_options 3)
  178.             (
  179.                 ; If FDFiles doesn't exist, create it.
  180.                 (if (NOT (exists (tackon FD_dest "FDFiles")))
  181.                     (
  182.                     (working "Installing System Files from FDProgram disk.")
  183.                     (makedir (tackon FD_dest "FDFiles") (infos))
  184.                     )
  185.                 )
  186.             )
  187.         )
  188.         (complete 80)
  189.  
  190.         ; -----------------
  191.         ; Installing FDLibs
  192.         ; -----------------
  193.         (if (IN install_options 4)
  194.             (
  195.                 ; If FDLibs doesn't exist, create it.
  196.                 (if (NOT (exists (tackon FD_dest "FDLibs")))
  197.                     (
  198.                     (makedir (tackon FD_dest "FDLibs") (infos))
  199.                     )
  200.                 )
  201.                 (working "Installing System Libraries from FDProgram disk.")
  202.                 (if (< (/ (getversion) 65536) 37)
  203.                      (copyfiles
  204.                          (source "FDProgram:FDLibs/iffparse.library")
  205.                          (dest (tackon FD_dest "FDLibs"))
  206.                         (files)
  207.                      )
  208.                 )
  209.                 (copyfiles
  210.                      (source "FDProgram:FDLibs/fcswlib.library")
  211.                      (dest (tackon FD_dest "FDLibs"))
  212.                     (files)
  213.                 )
  214.             )
  215.         )
  216.         (complete 90)
  217.  
  218.  
  219.         ; -----------------
  220.         ; Installing FDFonts
  221.         ; -----------------
  222.         (if (IN install_options 5)
  223.             (
  224.                 ; If FDFonts doesn't exist, create it.
  225.                 (if (NOT (exists (tackon FD_dest "FDFonts")))
  226.                     (
  227.                     (makedir (tackon FD_dest "FDFonts") (infos))
  228.                     )
  229.                 )
  230.                 (working "Installing System Fonts from FDProgram disk.")
  231.                 (copyfiles
  232.                     (source "FDProgram:FDFonts")
  233.                     (dest (tackon FD_dest "FDFonts"))
  234.                     (all)
  235.                 )
  236.  
  237.                 (run ("Avail FLUSH"))
  238.             )
  239.         )
  240.     )
  241. )
  242.  
  243. (complete 100)
  244.  
  245. (exit)
  246.