7e4684a5f9
Switch to upstream tarball, remove autoreconf, add hash. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
21 lines
604 B
Makefile
21 lines
604 B
Makefile
################################################################################
|
|
#
|
|
# sigrok-cli
|
|
#
|
|
################################################################################
|
|
|
|
SIGROK_CLI_VERSION = 0.6.0
|
|
SIGROK_CLI_SITE = http://sigrok.org/download/source/sigrok-cli
|
|
SIGROK_CLI_LICENSE = GPLv3+
|
|
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))
|