658de310c0
This is a bug-fix release that addresses the musl libc compatibility issues encountered with buildroot. We can also remove the patch which got merged upstream. Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
21 lines
562 B
Makefile
21 lines
562 B
Makefile
################################################################################
|
|
#
|
|
# libgpiod
|
|
#
|
|
################################################################################
|
|
|
|
LIBGPIOD_VERSION = v0.1.1
|
|
LIBGPIOD_SITE = $(call github,brgl,libgpiod,$(LIBGPIOD_VERSION))
|
|
LIBGPIOD_LICENSE = GPLv3+
|
|
LIBGPIOD_LICENSE_FILES = COPYING
|
|
# fetched from github, no configure script provided
|
|
LIBGPIOD_AUTORECONF = YES
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBGPIOD_TOOLS),y)
|
|
LIBGPIOD_CONF_OPTS += --enable-tools
|
|
else
|
|
LIBGPIOD_CONF_OPTS += --disable-tools
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|