homebrew-core/Formula/avro-c.rb

18 lines
402 B
Ruby
Raw Normal View History

2014-08-22 02:46:46 +00:00
require "formula"
2011-03-10 05:11:03 +00:00
class AvroC < Formula
2014-08-22 02:46:46 +00:00
homepage "http://avro.apache.org/"
url "http://www.apache.org/dyn/closer.cgi?path=avro/avro-1.7.7/c/avro-c-1.7.7.tar.gz"
sha1 "cbb698682d662c5e0abec023dcd37ce1f3db80d4"
2012-08-17 22:42:14 +00:00
# probably should be an optional dep
2014-08-22 02:46:46 +00:00
conflicts_with "xz"
2012-08-17 22:42:14 +00:00
2014-08-22 02:46:46 +00:00
depends_on "cmake" => :build
def install
system "cmake", ".", *std_cmake_args
system "make install"
end
end