Commit 4f6ba8cd authored by Atul Singh's avatar Atul Singh Committed by Thomas Petazzoni
Browse files

font-awesome:new package



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

Signed-off-by: default avatarAtul Singh <atul.singh.mandla@rockwellcollins.com>
[Thomas: fix misc minor typos.]
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent 1ded02f0
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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"
+7 −0
Original line number Diff line number Diff line
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
+2 −0
Original line number Diff line number Diff line
# Locally computed
sha256  7813f416057da622b16229b10fef550e1dc64c5bb59871cd38fa86e76dfdbae8  font-awesome-v4.5.0.tar.gz
+18 −0
Original line number Diff line number Diff line
################################################################################
#
# 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))