b4db6905a4
https://sigrok.org/gitweb/?p=sigrok-cli.git;a=blob;f=NEWS;h=614c910b791228203dd144f0c092204ba0491e8f;hb=6bb3c3dd27c0477705a5c0684a8c3fd506a35f48 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
21 lines
606 B
Makefile
21 lines
606 B
Makefile
################################################################################
|
|
#
|
|
# sigrok-cli
|
|
#
|
|
################################################################################
|
|
|
|
SIGROK_CLI_VERSION = 0.7.1
|
|
SIGROK_CLI_SITE = http://sigrok.org/download/source/sigrok-cli
|
|
SIGROK_CLI_LICENSE = GPL-3.0+
|
|
SIGROK_CLI_LICENSE_FILES = COPYING
|
|
SIGROK_CLI_DEPENDENCIES = host-pkgconf libsigrok
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBSIGROKDECODE),y)
|
|
SIGROK_CLI_CONF_OPTS += --with-libsigrokdecode
|
|
SIGROK_CLI_DEPENDENCIES += libsigrokdecode
|
|
else
|
|
SIGROK_CLI_CONF_OPTS += --with-libsigrokdecode=NO
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|