eot-utils

Convert OTF and TTF fonts to EOT format for web use

brewmacoslinux
Try with needOr install directly
Source

About

Tools to convert fonts from OTF/TTF to EOT format

Commands

eot-utilsmkeot

Examples

Convert a TrueType font to EOT format$ mkeot font.ttf > font.eot
Convert an OpenType font to EOT format$ mkeot font.otf > font.eot
Batch convert multiple fonts to EOT$ for f in *.ttf; do mkeot "$f" > "${f%.ttf}.eot"; done