home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d6xx / d660 / diamonds.lha / Diamonds / Install < prev    next >
Text File  |  1992-05-15  |  741b  |  28 lines

  1. .K ""
  2. ;  This XIcon script comes with the DIAMONDS program
  3. ;  It copys the iff.library and Small font to the LIBS: and FONTS:
  4. ;  directories respectively.
  5. ;  The script checks to avoid unnecessary copies.
  6. ;
  7. FAILAT 21
  8. ECHO "Diamonds Install script"
  9. ;
  10. IF NOT EXISTS libs:diskfont.library
  11.   ECHO "Hey: You should have diskfont.library installed in LIBS:!"
  12.   ECHO "     The game won't work if you don't."
  13. ENDIF
  14. IF NOT EXISTS libs:iff.library
  15.   ECHO "Installing library:    iff.library."
  16.   COPY libs/iff.library libs: clone
  17. ENDIF
  18. IF NOT EXISTS fonts:small.font
  19.   ECHO "Installing font:    Small, 8 pt."
  20.   COPY fonts fonts: clone all
  21.   ECHO "Running the FixFonts program..."
  22.   FixFonts
  23.   ECHO "Done."
  24. ENDIF
  25. ECHO " "
  26. ECHO "Installation complete."
  27. Wait 3
  28.