homebrew-core/Formula/czmq.rb

54 lines
1.2 KiB
Ruby
Raw Normal View History

class Czmq < Formula
homepage "http://czmq.zeromq.org/"
url "http://download.zeromq.org/czmq-2.2.0.tar.gz"
sha1 "2f4fd8de4cf04a68a8f6e88ea7657d8068f472d2"
revision 1
2014-10-24 17:45:41 +00:00
bottle do
cellar :any
sha1 "76953cbf02d8eb56aa0bea5caefa19d19f5e48c6" => :yosemite
sha1 "5297d31b43353db09cc1931de2a529999ca0f2b5" => :mavericks
sha1 "998759fe30f0e27fb994130dd7fe95c5930a8124" => :mountain_lion
end
2013-09-20 15:15:52 +00:00
head do
url "https://github.com/zeromq/czmq.git"
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
end
2013-09-20 15:15:52 +00:00
option :universal
depends_on "pkg-config" => :build
depends_on "libsodium" => :optional
if build.with? "libsodium"
depends_on "zeromq" => "with-libsodium"
else
depends_on "zeromq"
end
2013-08-07 16:46:36 +00:00
def install
ENV.universal_binary if build.universal?
args = ["--disable-dependency-tracking", "--prefix=#{prefix}"]
if build.stable?
args << "--with-libsodium" if build.with? "libsodium"
end
2013-08-07 16:46:36 +00:00
system "./autogen.sh" if build.head?
system "./configure", *args
system "make", "install"
rm Dir["#{bin}/*.gsl"]
end
test do
bin.cd do
system "#{bin}/czmq_selftest"
end
end
end