kumquat-buildroot/package/pulseview/pulseview.mk
Bartosz Golaszewski 78214851f3 pulseview: bump commit hash
Include commit ec6cc07f which fixes an issue causing build failures
on several architectures.

Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2015-06-30 14:26:46 +02:00

25 lines
751 B
Makefile

################################################################################
#
# pulseview
#
################################################################################
# TODO Pulseview can be built and linked against Qt4 as well.
# No https access on upstream git
PULSEVIEW_SITE = git://sigrok.org/pulseview
PULSEVIEW_VERSION = ec6cc07fed12f5070eee6b8cb11343e83d42533c
PULSEVIEW_LICENSE = GPLv3+
PULSEVIEW_LICENSE_FILES = COPYING
PULSEVIEW_DEPENDENCIES = libsigrok qt5base qt5svg boost
PULSEVIEW_CONF_OPTS = -DDISABLE_WERROR=TRUE
ifeq ($(BR2_PACKAGE_LIBSIGROKDECODE),y)
PULSEVIEW_CONF_OPTS += -DENABLE_DECODE=TRUE
PULSEVIEW_DEPENDENCIES += libsigrokdecode
else
PULSEVIEW_CONF_OPTS += -DENABLE_DECODE=FALSE
endif
$(eval $(cmake-package))