Config.in 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. config BR2_PACKAGE_GOOGLE_MATERIAL_DESIGN_ICONS
  2. bool "google-material-design-icons"
  3. help
  4. Material design icons are the official icon set from Google
  5. that are designed under the material design guidelines.
  6. https://github.com/google/material-design-icons
  7. if BR2_PACKAGE_GOOGLE_MATERIAL_DESIGN_ICONS
  8. config BR2_PACKAGE_GOOGLE_MATERIAL_DESIGN_ICONS_TYPE_PNG
  9. bool "Install PNG icons"
  10. help
  11. Use PNG icon types.
  12. The default. Traditional format; simplicity and compatibility.
  13. config BR2_PACKAGE_GOOGLE_MATERIAL_DESIGN_ICONS_TYPE_SVG
  14. bool "Install SVG icons"
  15. help
  16. Use SVG icon types.
  17. Vector format that is limitlessly scalable.
  18. config BR2_PACKAGE_GOOGLE_MATERIAL_DESIGN_ICONS_FONT
  19. bool "Install TrueType font"
  20. help
  21. Install the Material TrueType font (ttf) on the target system.
  22. config BR2_PACKAGE_GOOGLE_MATERIAL_DESIGN_ICONS_SPRITES_CSS
  23. bool "Install CSS sprites"
  24. help
  25. Install CSS (PNG) spritesheets.
  26. config BR2_PACKAGE_GOOGLE_MATERIAL_DESIGN_ICONS_SPRITES_SVG
  27. bool "Install SVG sprites"
  28. help
  29. Install SVG spritesheets.
  30. endif