homebrew-core/Formula/avro-c.rb

15 lines
335 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.6.3/c/avro-c-1.6.3.tar.gz'
md5 'af3f15605b47d02719706e5d67de8e75'
depends_on 'cmake' => :build
def install
2012-02-22 05:12:27 +00:00
system "cmake #{std_cmake_parameters} ."
system "make install"
end
end