homebrew-core/Formula/avro-c.rb

18 lines
402 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class AvroC < Formula
homepage 'http://avro.apache.org/'
url 'http://www.apache.org/dyn/closer.cgi?path=avro/avro-1.7.5/c/avro-c-1.7.5.tar.gz'
sha1 '49859a3310073e579356690fed7d165aca33ec7d'
2012-08-17 22:42:14 +00:00
# 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