b06d055c11
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for OFLv1.0/OFLv1.1 is OFL-1.0/OFL-1.1. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/OFLv([1]\.[0-1])/OFL-\1/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
19 lines
655 B
Makefile
19 lines
655 B
Makefile
################################################################################
|
|
#
|
|
# font-awesome
|
|
#
|
|
################################################################################
|
|
|
|
FONT_AWESOME_VERSION = v4.5.0
|
|
FONT_AWESOME_SITE = $(call github,FortAwesome,Font-Awesome,$(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))
|