2
0

makeufo.sh 993 B

12345678910111213141516171819202122232425
  1. # ------------------------------------------------------------------
  2. #
  3. # makeufo.sh
  4. # Copyright 2015 Christopher Simpkins
  5. # MIT license
  6. #
  7. # ------------------------------------------------------------------
  8. # DESCRIPTION
  9. # Creates UFO font source files from FontLab Studio .vfb source files
  10. # Executable: vfb2ufo (http://blog.fontlab.com/font-utility/vfb2ufo/)
  11. # PostScript Source Files
  12. vfb2ufo -fo -ttx -64 -p ../source/ufo ../source/vfb/Hack-Regular-PS.vfb
  13. vfb2ufo -fo -ttx -64 -p ../source/ufo ../source/vfb/Hack-Bold-PS.vfb
  14. vfb2ufo -fo -ttx -64 -p ../source/ufo ../source/vfb/Hack-Italic-PS.vfb
  15. vfb2ufo -fo -ttx -64 -p ../source/ufo ../source/vfb/Hack-BoldItalic-PS.vfb
  16. # TrueType Source Files
  17. vfb2ufo -fo -ttx -64 -p ../source/ufo ../source/vfb/Hack-Regular-TT.vfb
  18. vfb2ufo -fo -ttx -64 -p ../source/ufo ../source/vfb/Hack-Bold-TT.vfb
  19. vfb2ufo -fo -ttx -64 -p ../source/ufo ../source/vfb/Hack-Italic-TT.vfb
  20. vfb2ufo -fo -ttx -64 -p ../source/ufo ../source/vfb/Hack-BoldItalic-TT.vfb