czmq: update url to github releases (#1700)

* czmq: download url changed to github releases page
Accompanying changes required due to lack of configure script in new tarball.

* czmq: run make check-verbose to debug intermittent CI failure

* czmq: use new release tarballs
Revert changes which required autotool.

* czmq: try setting ZSYS_INTERFACE=lo0
Could fix a test failure involving multiple hosts on the same network
running the zbeacon tests at the same time.
This commit is contained in:
Jay Thomason 2016-06-14 15:02:31 -07:00 committed by Dominyk Tiller
parent c862384523
commit dbcccfa8fa

View file

@ -1,7 +1,7 @@
class Czmq < Formula
desc "High-level C binding for ZeroMQ"
homepage "http://czmq.zeromq.org/"
url "http://download.zeromq.org/czmq-3.0.2.tar.gz"
url "https://github.com/zeromq/czmq/releases/download/v3.0.2/czmq-3.0.2.tar.gz"
sha256 "8bca39ab69375fa4e981daf87b3feae85384d5b40cef6adbe9d5eb063357699a"
revision 3
@ -42,7 +42,7 @@ class Czmq < Formula
system "./autogen.sh" if build.head?
system "./configure", *args
system "make"
system "make", "check"
system "(ZSYS_INTERFACE=lo0 && make check-verbose)"
system "make", "install"
rm Dir["#{bin}/*.gsl"]
end