home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Database / FDATA3-1.DMS / in.adf / HDInstall < prev    next >
Encoding:
Text File  |  1995-09-25  |  6.4 KB  |  279 lines

  1. ;;
  2. ;;  $Filename: HDInstall $
  3. ;;  $Date: 1995/03/17 15:34:28 $
  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.  
  53.                 (help    "Final Data needs approximately .5 megabytes of disk "
  54.                         "space for a complete installation. If Final Data is "
  55.                         "already installed on this partition, you may wish to "
  56.                         "continue. Otherwise, press ABORT or NO now and either "
  57.                         "free some space on this partition or select a "
  58.                         "different partition 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 Databases"
  82.                 "Release 2 Databases"
  83.                 "System Files"
  84.                 "System Libraries"
  85.                 "System Fonts")
  86.             (default 3)            ; default to 0000-0011         (1)Program,            (2)Macros,
  87.                                     ;                                    (4)Databases,        (8)New Databases
  88.                                     ;                                    (16)Sys Files,        (32)Libraries,
  89.                                     ;                                    (64)System Fonts
  90.         )
  91.     )
  92.  
  93.     ; NO - First time install
  94.         (set install_options 127)    ; 0111-1111 - all seven options on
  95. )
  96.  
  97. (set error 0)
  98.  
  99. ; Installing Files from FDProgram
  100. (if (IN install_options 0 1 2 3 4 5 6)
  101.     (
  102.         ; -----------------
  103.         ; If installing/updating the program
  104.         ; -----------------
  105.         (if (IN install_options 0)
  106.             (
  107.                 ; ----- COPY the Final Data program over
  108.                 (working "Installing Final Data program from FDProgram disk.")
  109.                 (copyfiles
  110.                     (source "FDProgram:FinalData")
  111.                     (dest FD_dest)
  112.                 )
  113.                 ; ----- COPY the Final Data .info if the icon doesn't exists
  114.                 (if (NOT (exists (tackon FD_dest "FinalData.info")))
  115.                     (copyfiles
  116.                         (source "FDProgram:FinalData.info")
  117.                         (dest FD_dest)
  118.                     )
  119.                 )
  120.             )
  121.         )
  122.         (complete 40)
  123.  
  124.         ; -----------------
  125.         ; Installing FDMacros
  126.         ; -----------------
  127.         (if (IN install_options 1)
  128.             (
  129.                 ; ----- CREATE FDMacros if it doesn't exist.
  130.                 (if (NOT (exists (tackon FD_dest "FDMacros")))
  131.                     (
  132.                     (makedir (tackon FD_dest "FDMacros") (infos))
  133.                     )
  134.                 )
  135.                 (working "Installing ARexx Macros from FDProgram disk.")
  136.                 (copyfiles
  137.                     (source "FDProgram:FDMacros")
  138.                     (dest (tackon FD_dest "FDMacros"))
  139.                     (all)
  140.                 )
  141.             )
  142.         )
  143.         (complete 50)
  144.  
  145.         ; -----------------
  146.         ; Installing FDData Release 1 Sample Databases.
  147.         ; -----------------
  148.         (if (IN install_options 2)
  149.             (
  150.                 ; If FDData doesn't exist, create it.
  151.                 (if (NOT (exists (tackon FD_dest "FDData")))
  152.                     (
  153.                     (makedir (tackon FD_dest "FDData") (infos))
  154.                     )
  155.                 )
  156.                 (working "Installing Sample Databases from FDProgram disk.")
  157.                 (copyfiles
  158.                     (source "FDProgram:FDData")
  159.                     (dest (tackon FD_dest "FDData"))
  160.                     (choices
  161.                         "Appointments"
  162.                         "BikeTrainingLog"
  163.                         "Bills"
  164.                         "Birthdays"
  165.                         "BookList"
  166.                         "BusinessContacts"
  167.                         "CDCollection"
  168.                         "CoinCollection"
  169.                         "Customers"
  170.                         "Expenses"
  171.                         "Friends"
  172.                         "GasMileage"
  173.                         "HomeInventory"
  174.                         "Listings"
  175.                         "Periodicals"
  176.                         "StampCollection"
  177.                         "VideoLibrary")
  178.                     (infos)
  179.                 )
  180.             )
  181.         )
  182.         (complete 60)
  183.  
  184.         ; -----------------
  185.         ; Installing FDData Release 2 Sample Databases.
  186.         ; -----------------
  187.         (if (IN install_options 3)
  188.             (
  189.                 ; If FDData doesn't exist, create it.
  190.                 (if (NOT (exists (tackon FD_dest "FDData")))
  191.                     (
  192.                     (makedir (tackon FD_dest "FDData") (infos))
  193.                     )
  194.                 )
  195.                 (working "Installing Release 2 Databases from FDProgram disk.")
  196.                 (copyfiles
  197.                     (source "FDProgram:FDData")
  198.                     (dest (tackon FD_dest "FDData"))
  199.                     (choices
  200.                         "Checkbook")
  201.                     (infos)
  202.                 )
  203.             )
  204.         )
  205.         (complete 70)
  206.  
  207.         ; -----------------
  208.         ; Installing FDFiles (make dir, do not copy .prefs)
  209.         ; -----------------
  210.         (if (IN install_options 4)
  211.             (
  212.                 ; If FDFiles doesn't exist, create it.
  213.                 (if (NOT (exists (tackon FD_dest "FDFiles")))
  214.                     (
  215.                     (working "Installing System Files from FDProgram disk.")
  216.                     (makedir (tackon FD_dest "FDFiles") (infos))
  217.                     )
  218.                 )
  219.             )
  220.         )
  221.         (complete 80)
  222.  
  223.         ; -----------------
  224.         ; Installing FDLibs
  225.         ; -----------------
  226.         (if (IN install_options 5)
  227.             (
  228.                 ; If FDLibs doesn't exist, create it.
  229.                 (if (NOT (exists (tackon FD_dest "FDLibs")))
  230.                     (
  231.                     (makedir (tackon FD_dest "FDLibs") (infos))
  232.                     )
  233.                 )
  234.                 (working "Installing System Libraries from FDProgram disk.")
  235.                 (if (< (/ (getversion) 65536) 37)
  236.                      (copyfiles
  237.                          (source "FDProgram:FDLibs/iffparse.library")
  238.                          (dest (tackon FD_dest "FDLibs"))
  239.                         (files)
  240.                      )
  241.                 )
  242.                 (copyfiles
  243.                      (source "FDProgram:FDLibs/fcswlib.library")
  244.                      (dest (tackon FD_dest "FDLibs"))
  245.                     (files)
  246.                 )
  247.             )
  248.         )
  249.         (complete 90)
  250.  
  251.  
  252.         ; -----------------
  253.         ; Installing FDFonts
  254.         ; -----------------
  255.         (if (IN install_options 6)
  256.             (
  257.                 ; If FDFonts doesn't exist, create it.
  258.                 (if (NOT (exists (tackon FD_dest "FDFonts")))
  259.                     (
  260.                     (makedir (tackon FD_dest "FDFonts") (infos))
  261.                     )
  262.                 )
  263.                 (working "Installing System Fonts from FDProgram disk.")
  264.                 (copyfiles
  265.                     (source "FDProgram:FDFonts")
  266.                     (dest (tackon FD_dest "FDFonts"))
  267.                     (all)
  268.                 )
  269.  
  270.                 (run ("Avail FLUSH"))
  271.             )
  272.         )
  273.     )
  274. )
  275.  
  276. (complete 100)
  277.  
  278. (exit)
  279.