89fbba72fa
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for LGPLv3/LGPLv3+ is LGPL-3.0/LGPL-3.0+. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/LGPLv3(\+)?/LGPL-3.0\1/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
25 lines
876 B
Makefile
25 lines
876 B
Makefile
################################################################################
|
|
#
|
|
# riemann-c-client
|
|
#
|
|
################################################################################
|
|
|
|
RIEMANN_C_CLIENT_VERSION = 1.9.1
|
|
RIEMANN_C_CLIENT_SOURCE = riemann-c-client-$(RIEMANN_C_CLIENT_VERSION).tar.xz
|
|
RIEMANN_C_CLIENT_SITE = https://github.com/algernon/riemann-c-client/releases/download/riemann-c-client-$(RIEMANN_C_CLIENT_VERSION)
|
|
RIEMANN_C_CLIENT_LICENSE = LGPL-3.0+
|
|
RIEMANN_C_CLIENT_LICENSE_FILES = LICENSE
|
|
RIEMANN_C_CLIENT_INSTALL_STAGING = YES
|
|
RIEMANN_C_CLIENT_MAKE = $(MAKE1)
|
|
RIEMANN_C_CLIENT_DEPENDENCIES = \
|
|
host-pkgconf protobuf-c \
|
|
$(if $(BR2_PACKAGE_GNUTLS),gnutls) \
|
|
$(if $(BR2_PACKAGE_JSON_C),json-c)
|
|
|
|
ifeq ($(BR2_bfin),y)
|
|
# ld symbol versioning not working on bfin
|
|
RIEMANN_C_CLIENT_CONF_ENV += ac_cv_prog_ld_version_script=no
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|