czmq 4.0.1
This commit is contained in:
parent
23b1d81712
commit
ff53b5d07d
1 changed files with 4 additions and 3 deletions
|
@ -1,9 +1,8 @@
|
||||||
class Czmq < Formula
|
class Czmq < Formula
|
||||||
desc "High-level C binding for ZeroMQ"
|
desc "High-level C binding for ZeroMQ"
|
||||||
homepage "http://czmq.zeromq.org/"
|
homepage "http://czmq.zeromq.org/"
|
||||||
url "https://github.com/zeromq/czmq/releases/download/v3.0.2/czmq-3.0.2.tar.gz"
|
url "https://github.com/zeromq/czmq/releases/download/v4.0.1/czmq-4.0.1.tar.gz"
|
||||||
sha256 "8bca39ab69375fa4e981daf87b3feae85384d5b40cef6adbe9d5eb063357699a"
|
sha256 "0fc7294d983df7c2d6dc9b28ad7cd970377d25b33103aa82932bdb7fa6207215"
|
||||||
revision 3
|
|
||||||
|
|
||||||
bottle do
|
bottle do
|
||||||
cellar :any
|
cellar :any
|
||||||
|
@ -22,6 +21,7 @@ class Czmq < Formula
|
||||||
end
|
end
|
||||||
|
|
||||||
option :universal
|
option :universal
|
||||||
|
option "with-drafts", "Build and install draft classes and methods"
|
||||||
|
|
||||||
depends_on "pkg-config" => :build
|
depends_on "pkg-config" => :build
|
||||||
depends_on "libsodium" => :recommended
|
depends_on "libsodium" => :recommended
|
||||||
|
@ -39,6 +39,7 @@ class Czmq < Formula
|
||||||
|
|
||||||
args = ["--disable-dependency-tracking", "--prefix=#{prefix}"]
|
args = ["--disable-dependency-tracking", "--prefix=#{prefix}"]
|
||||||
args << "--with-libsodium" if build.with? "libsodium"
|
args << "--with-libsodium" if build.with? "libsodium"
|
||||||
|
args << "--enable-drafts" if build.with?("drafts") || build.head?
|
||||||
|
|
||||||
system "./autogen.sh" if build.head?
|
system "./autogen.sh" if build.head?
|
||||||
system "./configure", *args
|
system "./configure", *args
|
||||||
|
|
Loading…
Reference in a new issue