home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 2 / fishmore-publicdomainlibraryvol.ii1991xetec.iso / disks / disk452.lzh / ImageLab / Install < prev    next >
Text File  |  1991-02-13  |  2KB  |  77 lines

  1. .K ""
  2. ; Install file for ImageLab V2.4
  3. ; Modified by fnf for use with Xicon, to install in ram:
  4.  
  5. echo "=============*E[33mImageLab V2.4*E[31m=============="
  6. echo "=============*E[33m Installation*E[31m =============*N"
  7. failat 30
  8.  
  9.  
  10. ;---------------------------------------------------------------------------
  11. ; First, create the directory and move the main files in.
  12.  
  13. echo "  ImageLab Installation..."
  14.  
  15. if not exists ram:ImageLab
  16.     makedir ram:ImageLab
  17.     copy /ImageLab.info ram:ImageLab.info
  18. endif
  19.  
  20. assign ImageLab: ram:ImageLab
  21.  
  22. copy ImageLab ImageLab: CLONE
  23. copy ImageLab.Help ImageLab: CLONE
  24. copy ImageLab.Doc ImageLab: CLONE
  25. filenote ImageLab:ImageLab "ImageLab V2.4 ©1991, by Gary W. Milliorn."
  26.  
  27.  
  28. ;---------------------------------------------------------------------------
  29. ; Next, install the 1.3 or 2.0 icons.
  30.  
  31. echo "*N  Icon Installation..."
  32. echo "    Due to the way 2.0 changes the default WorkBench colors,"
  33. echo "    ImageLab has two different icons: one for 1.3 and another"
  34. echo "    for 2.0.*N"
  35.  
  36. echo "    *E[33mAre you running on a 2.0 system ? *E[31m"
  37. Ask  "    Enter 'y' or 'n'"
  38. if warn
  39.     copy ImageLab.IInfo20 ImageLab:ImageLab.info
  40.     copy ImageLab.TInfo20 ImageLab:ImageLab.Doc.info
  41.     copy ImageLab.HInfo20 ImageLab:ImageLab.Help.info
  42.     copy ImageLab.DInfo20 ImageLab:.info
  43. else
  44.     copy ImageLab.IInfo13 ImageLab:ImageLab.info
  45.     copy ImageLab.TInfo13 ImageLab:ImageLab.Doc.info
  46.     copy ImageLab.HInfo13 ImageLab:ImageLab.Help.info
  47.     copy ImageLab.DInfo13 ImageLab:.info
  48. endif
  49.  
  50. ;---------------------------------------------------------------------------
  51. ; Next, try to install the optional font.
  52.  
  53. if not exists FONTS:ceres.font
  54.   echo "*N  Font Installation..."
  55.   echo "    ImageLab handles proportional fonts in its menus and requesters."
  56.   echo "    The font included in this distribution, `Ceres', is a sans-serif,"
  57.   echo "    9-point, bold, proportional font that looks rather well."
  58.   echo "    Installing it is completely optional.*N"
  59.  
  60.   echo "    *E[33mDo you want to install the Ceres/9 font ? *E[31m"
  61.   Ask  "    Enter 'y' or 'n'"
  62.   if warn
  63.     copy ceres.font FONTS:ceres.font
  64.     if not exists FONTS:ceres
  65.         makedir FONTS:ceres
  66.     endif
  67.     copy 9b FONTS:ceres/9b
  68.   endif
  69. endif
  70.  
  71.  
  72. ;---------------------------------------------------------------------------
  73. ; All done!
  74.  
  75. echo "*N===============*E[33m Complete*E[31m ==============="
  76. echo
  77.