30a3e8d108
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for LGPLv2.1/LGPLv2.1+ is LGPL-2.1/LGPL-2.1+. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/LGPLv2.1(\+)?/LGPL-2.1\1/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
24 lines
808 B
Makefile
24 lines
808 B
Makefile
################################################################################
|
|
#
|
|
# liblog4c-localtime
|
|
#
|
|
################################################################################
|
|
|
|
LIBLOG4C_LOCALTIME_VERSION = v1.0
|
|
LIBLOG4C_LOCALTIME_SITE = $(call github,rcmadruga,log4c-localtime,$(LIBLOG4C_LOCALTIME_VERSION))
|
|
LIBLOG4C_LOCALTIME_INSTALL_STAGING = YES
|
|
LIBLOG4C_LOCALTIME_CONF_OPTS = --disable-expattest
|
|
LIBLOG4C_LOCALTIME_DEPENDENCIES = expat
|
|
LIBLOG4C_LOCALTIME_CONFIG_SCRIPTS = log4c-config
|
|
LIBLOG4C_LOCALTIME_LICENSE = LGPL-2.1
|
|
LIBLOG4C_LOCALTIME_LICENSE_FILES = COPYING
|
|
LIBLOG4C_LOCALTIME_AUTORECONF = YES
|
|
|
|
define LIBLOG4C_LOCALTIME_FIX_CONFIGURE_PERMS
|
|
chmod +x $(@D)/configure
|
|
endef
|
|
|
|
LIBLOG4C_LOCALTIME_PRE_CONFIGURE_HOOKS += LIBLOG4C_LOCALTIME_FIX_CONFIGURE_PERMS
|
|
|
|
$(eval $(autotools-package))
|