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>
16 lines
551 B
Makefile
16 lines
551 B
Makefile
################################################################################
|
|
#
|
|
# cantarell
|
|
#
|
|
################################################################################
|
|
|
|
CANTARELL_VERSION_MAJOR = 0.0
|
|
CANTARELL_VERSION = $(CANTARELL_VERSION_MAJOR).25
|
|
CANTARELL_SITE = http://ftp.gnome.org/pub/gnome/sources/cantarell-fonts/$(CANTARELL_VERSION_MAJOR)
|
|
CANTARELL_SOURCE = cantarell-fonts-$(CANTARELL_VERSION).tar.xz
|
|
CANTARELL_DEPENDENCIES = host-pkgconf
|
|
CANTARELL_LICENSE = OFL-1.1
|
|
CANTARELL_LICENSE_FILES = COPYING
|
|
|
|
$(eval $(autotools-package))
|