home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 554a.lha / CheckbookAccountant_v2.0 / CAinstall < prev    next >
Text File  |  1991-09-09  |  4KB  |  182 lines

  1. .K ""
  2. ;
  3. ; CAinstall - installation script for Checkbook Accountant 2.0
  4. ;
  5. ;
  6. ; after unarchiving, but before installation:
  7. ;    CAinstall
  8. ;    CAinstall.info
  9. ;    CAhelp/#?
  10. ;    CAicons/2.0/#?
  11. ;    CAicons/1.3/#?
  12. ;    CAmisc/#?
  13. ;    CAsupport/#?
  14. ;
  15. ; after installation:
  16. ;    CA
  17. ;    CA.info
  18. ;    CAchanges1.0-2.0.txt
  19. ;    CAchanges1.0-2.0.txt.info
  20. ;    CAdefault.CAb
  21. ;    CAdefault.CAb.info
  22. ;    CAdefault.CAd
  23. ;    CAdefault.CAd.info
  24. ;    CAexample.CAc
  25. ;    CAexample.CAc.info
  26. ;    CAmanual.txt
  27. ;    CAmanual.txt.info
  28. ;    CAquickdocs.txt
  29. ;    CAquickdocs.txt.info
  30. ;    FR_User.DOC
  31. ;    FR_User.DOC.info
  32. ;    CAhelp/#?
  33.  
  34.  
  35.  
  36.  
  37. echo ""
  38. echo "Checkbook Accountant 2.0 installation"
  39. echo "-------------------------------------"
  40. echo ""
  41. echo "This script will install the Checkbook Accountant 2.0 system onto the"
  42. echo "current disk or directory.  The minimum disk space requirements for a"
  43. echo "working installation are approximately 280,000 free bytes."
  44.  
  45.  
  46.  
  47.  
  48. echo ""
  49. ask "Do you want to continue? [Default = NO]"
  50. if WARN
  51.    echo ""
  52. else
  53.    echo ""
  54.    echo "Exiting the installation.  To install the program in a different"
  55.    echo "location, move all files (and directories) in the current disk or"
  56.    echo "directory to the disk or directory where you want the program to"
  57.    echo "reside and double-click (or execute) the CAinstall icon (script)."
  58.    skip exit
  59. endif
  60.  
  61.  
  62.  
  63.  
  64. if not EXISTS CAhelp
  65.    echo "   ERROR: Could not find CAhelp directory"
  66.    skip incomplete
  67. endif
  68. if not EXISTS CAicons
  69.    echo "   ERROR: Could not find CAicons directory"
  70.    skip incomplete
  71. endif
  72. if not EXISTS CAicons/2.0
  73.    echo "   ERROR: Could not find CAicons/2.0 directory"
  74.    skip incomplete
  75. endif
  76. if not EXISTS CAicons/1.3
  77.    echo "   ERROR: Could not find CAicons/1.3 directory"
  78.    skip incomplete
  79. endif
  80. if not EXISTS CAmisc
  81.    echo "   ERROR: Could not find CAmisc directory"
  82.    skip incomplete
  83. endif
  84. if not EXISTS CAsupport
  85.    echo "   ERROR: Could not find CAsupport directory"
  86.    skip incomplete
  87. endif
  88.  
  89.  
  90.  
  91.  
  92. echo "Copying support files..."
  93. if not EXISTS LIBS:kd_freq.library
  94.    echo "   Copying kd_freq.library to LIBS: directory..."
  95.    if not EXISTS CAsupport/kd_freq.library
  96.       echo "   ERROR: Could not find CAsupport/kd_freq.library"
  97.       skip incomplete
  98.    endif
  99.    copy CAsupport/kd_freq.library LIBS:kd_freq.library
  100.  
  101.    echo "   Copying FR_User.DOC to this directory..."
  102.    if not EXISTS CAsupport/FR_User.DOC
  103.       echo "   ERROR: Could not find CAsupport/FR_User.DOC"
  104.       skip incomplete
  105.    endif
  106.    copy CAsupport/FR_User.DOC "" quiet
  107. else
  108.    echo "   kd_freq.library already exists in the LIBS: directory...No copying needed."
  109.    if not EXISTS CAicons/2.0/FR_User.DOC.info
  110.       echo "   ERROR: Could not find CAicons/2.0/FR_User.DOC.info"
  111.       skip incomplete
  112.    endif
  113.    delete CAicons/2.0/FR_User.DOC.info quiet
  114.  
  115.    if not EXISTS CAicons/1.3/FR_User.DOC.info
  116.       echo "   ERROR: Could not find CAicons/1.3/FR_User.DOC.info"
  117.       skip incomplete
  118.    endif
  119.    delete CAicons/1.3/FR_User.DOC.info quiet
  120. endif
  121. delete CAsupport all quiet
  122.  
  123.  
  124.  
  125.  
  126. echo ""
  127. echo "Copying example and documentation files..."
  128. copy CAmisc "" all quiet
  129. delete CAmisc all quiet
  130.  
  131.  
  132.  
  133.  
  134. echo ""
  135. ask "Do you want icons generated? [Default = NO]"
  136. if WARN
  137.    ask "   Do you want 2.0 icons? [Default = NO]"
  138.    if WARN
  139.       echo "      Copying 2.0 icons..."
  140.       copy CAicons/2.0 "" all quiet
  141.    else
  142.       echo "      Copying 1.3 icons..."
  143.       copy CAicons/1.3 "" all quiet
  144.    endif
  145.  
  146.    echo ""
  147.    echo "   To view these icons properly, close & reopen this disk or drawer."
  148. endif
  149. delete CAicons all quiet
  150.  
  151.  
  152.  
  153.  
  154. delete CAinstall quiet
  155. if EXISTS CAinstall.info
  156.    delete CAinstall.info quiet
  157. endif
  158. skip complete
  159.  
  160.  
  161.  
  162.  
  163. LAB incomplete
  164. echo ""
  165. echo "Error during installation.  Be sure to unarchive the CHKBKACCTNT2.0.LZH file"
  166. echo "as directed before retrying the installation procedure."
  167. skip exit
  168.  
  169.  
  170.  
  171.  
  172. LAB complete
  173. echo ""
  174. echo "Installation is complete."
  175.  
  176.  
  177.  
  178.  
  179. LAB exit
  180. echo ""
  181. ask "Press RETURN to exit."
  182.