Files
buildroot/package/basu/basu.mk
Sergey Bobrenok 9fcf0fd801 package/basu: new package
basu is the sd-bus library, extracted from systemd.

Some projects rely on the sd-bus library for DBus support. However not
all systems have systemd or elogind installed. This library provides
just sd-bus (and the busctl utility).

Signed-off-by: Sergey Bobrenok <bobrofon@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2024-05-13 21:28:41 +02:00

29 lines
697 B
Makefile

################################################################################
#
# basu
#
################################################################################
BASU_VERSION = 0.2.1
BASU_SITE = https://git.sr.ht/~emersion/basu/refs/download/v$(BASU_VERSION)
BASU_INSTALL_STAGING = YES
BASU_LICENSE = LGPL-2.1+
BASU_LICENSE_FILES = LICENSE.LGPL2.1
BASU_DEPENDENCIES = host-gperf
ifeq ($(BR2_PACKAGE_LIBCAP),y)
BASU_DEPENDENCIES += libcap
BASU_CONF_OPTS += -Dlibcap=enabled
else
BASU_CONF_OPTS += -Dlibcap=disabled
endif
ifeq ($(BR2_PACKAGE_AUDIT),y)
BASU_DEPENDENCIES += audit
BASU_CONF_OPTS += -Daudit=enabled
else
BASU_CONF_OPTS += -Daudit=disabled
endif
$(eval $(meson-package))