kumquat-buildroot/package/zyre/zyre.mk
Simon Dawson 09b6200a56 zyre: use a git snapshot that builds
Commit abe6a13cea bumped the git snapshot for
zyre. Unfortunately, the newer snapshot requires a newer version of
czmq than is currently available in Buildroot. The simplest short-term fix is
to roll zyre back to an earlier git snapshot.

Fixes autobuild failures such as the following.

  http://autobuild.buildroot.net/results/0ef/0efbbcc7e94cdb184c5d032469e03b2b7da3d054/

Signed-off-by: Simon Dawson <spdawson@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2013-12-19 22:33:00 +01:00

23 lines
617 B
Makefile

################################################################################
#
# zyre
#
################################################################################
ZYRE_VERSION = d5b8cb1f66fb5059d9eeb0702a7c2055a63cd8a7
ZYRE_SITE = $(call github,zeromq,zyre,$(ZYRE_VERSION))
ZYRE_LICENSE = LGPLv3+
ZYRE_LICENSE_FILES = COPYING COPYING.LESSER
ZYRE_INSTALL_STAGING = YES
ZYRE_DEPENDENCIES = filemq
ZYRE_AUTORECONF = YES
ZYRE_AUTORECONF_OPT = --install --force --verbose
define ZYRE_CREATE_CONFIG_DIR
mkdir -p $(@D)/config
endef
ZYRE_POST_PATCH_HOOKS += ZYRE_CREATE_CONFIG_DIR
$(eval $(autotools-package))