homebrew-core/Formula/czmq.rb
Geoff Garside 298bcd5911 czmq 1.4.1
Closes Homebrew/homebrew#19692.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-05-09 09:10:35 -07:00

18 lines
445 B
Ruby

require 'formula'
class Czmq < Formula
homepage 'http://czmq.zeromq.org/'
url 'http://download.zeromq.org/czmq-1.4.1.tar.gz'
sha1 '8ddb485e9d53bca6bb703c850be40b8da70c4d74'
option :universal
depends_on 'zeromq'
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end