96e9480fbc
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for BSD-2c is BSD-2-Clause. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/BSD-2c/BSD-2-Clause/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
20 lines
678 B
Makefile
20 lines
678 B
Makefile
################################################################################
|
|
#
|
|
# xfont_font-util
|
|
#
|
|
################################################################################
|
|
|
|
XFONT_FONT_UTIL_VERSION = 1.3.1
|
|
XFONT_FONT_UTIL_SOURCE = font-util-$(XFONT_FONT_UTIL_VERSION).tar.bz2
|
|
XFONT_FONT_UTIL_SITE = http://xorg.freedesktop.org/releases/individual/font
|
|
XFONT_FONT_UTIL_LICENSE = MIT/BSD-2-Clause
|
|
XFONT_FONT_UTIL_LICENSE_FILES = COPYING
|
|
|
|
XFONT_FONT_UTIL_DEPENDENCIES = host-pkgconf
|
|
HOST_XFONT_FONT_UTIL_DEPENDENCIES = host-pkgconf
|
|
XFONT_FONT_UTIL_INSTALL_STAGING = YES
|
|
XFONT_FONT_UTIL_INSTALL_TARGET = NO
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|