af31c309e7
We want to use SPDX identifier for license strings as much as possible. SPDX short identifier for GPLv2/GPLv2+ is GPL-2.0/GPL-2.0+. This change is done by using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/\<GPLv2\>/GPL-2.0/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
27 lines
766 B
Makefile
27 lines
766 B
Makefile
################################################################################
|
|
#
|
|
# fbterm
|
|
#
|
|
################################################################################
|
|
|
|
FBTERM_VERSION = 1.7.0
|
|
FBTERM_SITE = https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/fbterm
|
|
FBTERM_LICENSE = GPL-2.0+
|
|
FBTERM_LICENSE_FILES = COPYING
|
|
FBTERM_DEPENDENCIES = fontconfig liberation
|
|
|
|
ifeq ($(BR2_STATIC_LIBS)$(BR2_TOOLCHAIN_HAS_THREADS),yy)
|
|
# fontconfig uses pthreads if available, but fbterm forgets to link
|
|
# with it breaking static builds
|
|
FBTERM_CONF_ENV += LIBS='-lpthread'
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_GPM),y)
|
|
FBTERM_DEPENDENCIES += gpm
|
|
FBTERM_CONF_OPTS += --enable-gpm
|
|
else
|
|
FBTERM_CONF_OPTS += --disable-gpm
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|