ttf-bitstream-vera_1.10.bb 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. SUMMARY = "The Bitstream Vera fonts - TTF Edition"
  2. HOMEPAGE = "https://www.gnome.org/fonts/"
  3. DESCRIPTION = "The Bitstream Vera fonts include four monospace and sans \
  4. faces (normal, oblique, bold, bold oblique) and two serif faces (normal \
  5. and bold). In addition Fontconfig/Xft2 can artificially oblique the \
  6. serif faces for you: this loses hinting and distorts the faces slightly, \
  7. but is visibly different than normal and bold, and reasonably pleasing."
  8. SECTION = "x11/fonts"
  9. LICENSE = "BitstreamVera"
  10. LIC_FILES_CHKSUM = "file://COPYRIGHT.TXT;md5=27d7484b1e18d0ee4ce538644a3f04be"
  11. inherit allarch fontcache
  12. FONT_PACKAGES = "${PN}"
  13. SRC_URI = "${GNOME_MIRROR}/ttf-bitstream-vera/1.10/ttf-bitstream-vera-${PV}.tar.bz2"
  14. SRC_URI[sha256sum] = "db5b27df7bbb318036ebdb75acd3e98f1bd6eb6608fb70a67d478cd243d178dc"
  15. do_install () {
  16. install -d ${D}${datadir}/fonts/ttf
  17. for i in *.ttf; do
  18. install -m 644 $i ${D}${datadir}/fonts/ttf
  19. done
  20. install -d ${D}${docdir}/${BPN}
  21. for i in *.TXT; do
  22. install -m 644 $i ${D}${docdir}/${BPN}
  23. done
  24. }
  25. FILES:${PN} = "${datadir}/fonts"