homebrew-core/Formula/avro-c.rb
samueljohn 0129d02908 avro-c 1.7.1
Fixes Homebrew/homebrew#14196.
Closes Homebrew/homebrew#14205.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-08-18 22:31:51 -05:00

17 lines
402 B
Ruby

require 'formula'
class AvroC < Formula
homepage 'http://avro.apache.org/'
url 'http://www.apache.org/dyn/closer.cgi?path=avro/avro-1.7.1/c/avro-c-1.7.1.tar.gz'
sha1 'dac162d65082ac905713d0b1be7d29a12f2eeb16'
# probably should be an optional dep
conflicts_with 'xz'
depends_on 'cmake' => :build
def install
system "cmake", ".", *std_cmake_args
system "make install"
end
end