This commit is contained in:
TriForceX
2019-09-25 20:51:37 -03:00
commit 6203ff3e7c
11215 changed files with 428258 additions and 0 deletions

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 de512ba0e1dead382bbfce372cde74b3f18971d876fffb635ee9333f0db05d43 font-awesome-4.7.0.tar.gz

View File

@@ -0,0 +1,18 @@
################################################################################
#
# font-awesome
#
################################################################################
FONT_AWESOME_VERSION = 4.7.0
FONT_AWESOME_SITE = $(call github,FortAwesome,Font-Awesome,v$(FONT_AWESOME_VERSION))
FONT_AWESOME_LICENSE = OFL-1.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))