mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 21:43:30 +08:00
be9d731edf
The check-package script when ran gives warnings on text wrapping on all of these Config files. This patch cleans up all warnings related to the text wrapping for the Config files starting with the letter g in the package directory. The appropriate indentation is: <tab><2 spaces><62 chars> See http://nightly.buildroot.org/#writing-rules-config-in for more information. Signed-off-by: Adam Duskett <aduskett@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
41 lines
1.0 KiB
Plaintext
41 lines
1.0 KiB
Plaintext
config BR2_PACKAGE_GOOGLE_MATERIAL_DESIGN_ICONS
|
|
bool "google-material-design-icons"
|
|
help
|
|
Material design icons are the official icon set from Google
|
|
that are designed under the material design guidelines.
|
|
|
|
https://github.com/google/material-design-icons
|
|
|
|
if BR2_PACKAGE_GOOGLE_MATERIAL_DESIGN_ICONS
|
|
|
|
config BR2_PACKAGE_GOOGLE_MATERIAL_DESIGN_ICONS_TYPE_PNG
|
|
bool "Install PNG icons"
|
|
help
|
|
Use PNG icon types.
|
|
|
|
The default. Traditional format; simplicity and compatibility.
|
|
|
|
config BR2_PACKAGE_GOOGLE_MATERIAL_DESIGN_ICONS_TYPE_SVG
|
|
bool "Install SVG icons"
|
|
help
|
|
Use SVG icon types.
|
|
|
|
Vector format that is limitlessly scalable.
|
|
|
|
config BR2_PACKAGE_GOOGLE_MATERIAL_DESIGN_ICONS_FONT
|
|
bool "Install TrueType font"
|
|
help
|
|
Install the Material TrueType font (ttf) on the target system.
|
|
|
|
config BR2_PACKAGE_GOOGLE_MATERIAL_DESIGN_ICONS_SPRITES_CSS
|
|
bool "Install CSS sprites"
|
|
help
|
|
Install CSS (PNG) spritesheets.
|
|
|
|
config BR2_PACKAGE_GOOGLE_MATERIAL_DESIGN_ICONS_SPRITES_SVG
|
|
bool "Install SVG sprites"
|
|
help
|
|
Install SVG spritesheets.
|
|
|
|
endif
|