Depends: Add ZeroMQ package

This commit is contained in:
Cory Fields 2015-05-05 20:30:20 -04:00 committed by Jack Grigg
parent 7e6ec078fa
commit cce7754eb8
No known key found for this signature in database
GPG Key ID: 6A6914DAFBEA00DA
4 changed files with 33 additions and 0 deletions

View File

@ -1,5 +1,7 @@
zcash_packages := libsnark libgmp libsodium
packages := boost openssl $(zcash_packages) googletest googlemock
packages_darwin:=zeromq
packages_linux:=zeromq
native_packages := native_ccache
wallet_packages=bdb

View File

@ -0,0 +1,26 @@
package=zeromq
$(package)_version=4.0.4
$(package)_download_path=http://download.zeromq.org
$(package)_file_name=$(package)-$($(package)_version).tar.gz
$(package)_sha256_hash=1ef71d46e94f33e27dd5a1661ed626cd39be4d2d6967792a275040e34457d399
define $(package)_set_vars
$(package)_config_opts=--without-documentation --disable-shared
$(package)_config_opts_linux=--with-pic
endef
define $(package)_config_cmds
$($(package)_autoconf)
endef
define $(package)_build_cmds
$(MAKE) -C src
endef
define $(package)_stage_cmds
$(MAKE) -C src DESTDIR=$($(package)_staging_dir) install
endef
define $(package)_postprocess_cmds
rm -rf bin share
endef

View File

@ -57,6 +57,10 @@ testScriptsExt=(
'p2p-acceptblock.py'
);
if [ "x$ENABLE_ZMQ" = "x1" ]; then
testScripts=( ${testScripts[@]} 'zmq_test.py' )
fi
extArg="-extended"
passOn=${@#$extArg}

View File

@ -10,6 +10,7 @@ EXEEXT="@EXEEXT@"
@ENABLE_WALLET_TRUE@ENABLE_WALLET=1
@BUILD_BITCOIN_UTILS_TRUE@ENABLE_UTILS=1
@BUILD_BITCOIND_TRUE@ENABLE_BITCOIND=1
@ENABLE_ZMQ_TRUE@ENABLE_ZMQ=1
REAL_BITCOIND="$BUILDDIR/src/zcashd${EXEEXT}"
REAL_BITCOINCLI="$BUILDDIR/src/zcash-cli${EXEEXT}"