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>
41 lines
975 B
Makefile
41 lines
975 B
Makefile
################################################################################
|
|
#
|
|
# ubus
|
|
#
|
|
################################################################################
|
|
|
|
UBUS_VERSION = 34c6e818e431cc53478a0f7c7c1eca07d194d692
|
|
UBUS_SITE = git://git.openwrt.org/project/ubus.git
|
|
|
|
UBUS_LICENSE = LGPL-2.1
|
|
UBUS_LICENSE_FILES = ubusd_acl.h
|
|
|
|
UBUS_INSTALL_STAGING = YES
|
|
|
|
UBUS_DEPENDENCIES = json-c libubox
|
|
|
|
# package only compiles with Lua 5.1
|
|
ifeq ($(BR2_PACKAGE_LUA_5_1),y)
|
|
UBUS_DEPENDENCIES += lua
|
|
UBUS_CONF_OPTS += -DBUILD_LUA=ON \
|
|
-DLUA_CFLAGS=-I$(STAGING_DIR)/usr/include \
|
|
-DLUAPATH=/usr/lib/lua/$(LUAINTERPRETER_ABIVER)
|
|
else
|
|
UBUS_CONF_OPTS += -DBUILD_LUA=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_SYSTEMD),y)
|
|
UBUS_DEPENDENCIES += systemd
|
|
UBUS_CONF_OPTS += -DENABLE_SYSTEMD=ON
|
|
else
|
|
UBUS_CONF_OPTS += -DENABLE_SYSTEMD=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_UBUS_EXAMPLES),y)
|
|
UBUS_CONF_OPTS += -DBUILD_EXAMPLES=ON
|
|
else
|
|
UBUS_CONF_OPTS += -DBUILD_EXAMPLES=OFF
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|