homebrew-core/Formula/avro-cpp.rb
Daniel Russel 1c26fe6e42 avro-cpp 1.7.2
Closes Homebrew/homebrew#14322.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-11-01 19:53:05 -07:00

15 lines
367 B
Ruby

require 'formula'
class AvroCpp < Formula
homepage 'http://avro.apache.org/'
url 'http://www.apache.org/dyn/closer.cgi?path=avro/avro-1.7.2/cpp/avro-cpp-1.7.2.tar.gz'
sha1 'f9116583e4f230288317410404b066664722f9e4'
depends_on 'cmake' => :build
depends_on 'boost'
def install
system "cmake", ".", *std_cmake_args
system "make install"
end
end