homebrew-core/Formula/czmq.rb
2016-11-15 23:13:26 -08:00

76 lines
2.1 KiB
Ruby

class Czmq < Formula
desc "High-level C binding for ZeroMQ"
homepage "http://czmq.zeromq.org/"
url "https://github.com/zeromq/czmq/releases/download/v4.0.1/czmq-4.0.1.tar.gz"
sha256 "0fc7294d983df7c2d6dc9b28ad7cd970377d25b33103aa82932bdb7fa6207215"
bottle do
cellar :any
sha256 "a8a996216bf15cc37a48507c1549162517f7afb30289b5fd18808015b2686596" => :sierra
sha256 "d649c24c131485e701c461970db241aa2c59e0a98fdd831787703943477f25fc" => :el_capitan
sha256 "b408b48eeb8fe5bd31277197c322f67fde275693e9b5f7ddd5ea1d8dffb03455" => :yosemite
end
head do
url "https://github.com/zeromq/czmq.git"
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
end
option :universal
option "with-drafts", "Build and install draft classes and methods"
depends_on "asciidoc" => :build
depends_on "pkg-config" => :build
depends_on "xmlto" => :build
depends_on "zeromq"
conflicts_with "mono", :because => "both install `makecert` binaries"
def install
ENV.universal_binary if build.universal?
ENV["XML_CATALOG_FILES"] = "#{etc}/xml/catalog"
args = ["--disable-dependency-tracking", "--prefix=#{prefix}"]
args << "--enable-drafts" if build.with? "drafts"
system "./autogen.sh" if build.head?
system "./configure", *args
system "make"
system "make", "ZSYS_INTERFACE=lo0", "check-verbose"
system "make", "install"
rm Dir["#{bin}/*.gsl"]
end
test do
(testpath/"test.c").write <<-EOS.undent
#include <czmq.h>
int main(void)
{
zsock_t *push = zsock_new_push("inproc://hello-world");
zsock_t *pull = zsock_new_pull("inproc://hello-world");
zstr_send(push, "Hello, World!");
char *string = zstr_recv(pull);
puts(string);
zstr_free(&string);
zsock_destroy(&pull);
zsock_destroy(&push);
return 0;
}
EOS
flags = ENV.cflags.to_s.split + %W[
-I#{include}
-L#{lib}
-lczmq
]
system ENV.cc, "-o", "test", "test.c", *flags
assert_equal "Hello, World!\n", shell_output("./test")
end
end