font-awesome:new package

Font Awesome is a full suite of 605 pictographic icons for easy
scalable vector graphics on websites.

Signed-off-by: Atul Singh <atul.singh.mandla@rockwellcollins.com>
[Thomas: fix misc minor typos.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Atul Singh 2016-02-17 15:26:52 +05:30 committed by Thomas Petazzoni
parent 1ded02f0b2
commit 4f6ba8cd45
4 changed files with 28 additions and 0 deletions

View File

@ -199,6 +199,7 @@ comment "Fonts"
source "package/bitstream-vera/Config.in"
source "package/cantarell/Config.in"
source "package/dejavu/Config.in"
source "package/font-awesome/Config.in"
source "package/ghostscript-fonts/Config.in"
source "package/inconsolata/Config.in"
source "package/liberation/Config.in"

View File

@ -0,0 +1,7 @@
config BR2_PACKAGE_FONT_AWESOME
bool "font-awesome"
help
Font Awesome is a full suite of 605 pictographic icons for
easy scalable vector graphics on websites.
https://github.com/FortAwesome/Font-Awesome

View File

@ -0,0 +1,2 @@
# Locally computed
sha256 7813f416057da622b16229b10fef550e1dc64c5bb59871cd38fa86e76dfdbae8 font-awesome-v4.5.0.tar.gz

View File

@ -0,0 +1,18 @@
################################################################################
#
# font-awesome
#
################################################################################
FONT_AWESOME_VERSION = v4.5.0
FONT_AWESOME_SITE = $(call github,FortAwesome,Font-Awesome,$(FONT_AWESOME_VERSION))
FONT_AWESOME_LICENSE = OFLv1.1 (font), MIT (CSS, LESS and Sass files)
FONT_AWESOME_DIRECTORIES_LIST = css fonts less scss
define FONT_AWESOME_INSTALL_TARGET_CMDS
mkdir -p $(TARGET_DIR)/usr/share/font-awesome/
$(foreach d,$(FONT_AWESOME_DIRECTORIES_LIST),\
cp -dpfr $(@D)/$(d) $(TARGET_DIR)/usr/share/font-awesome$(sep))
endef
$(eval $(generic-package))