d5c22302f9
Release 0.1.2 claimed to fix an issue with requesting both types of line events, but actually didn't. This time it's really fixed. Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
21 lines
562 B
Makefile
21 lines
562 B
Makefile
################################################################################
|
|
#
|
|
# libgpiod
|
|
#
|
|
################################################################################
|
|
|
|
LIBGPIOD_VERSION = v0.1.3
|
|
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))
|