blob: 9676ab9317bf3c0490d3254a829f0509032f624f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class AvroCpp < Formula
homepage 'http://avro.apache.org/'
url 'http://www.apache.org/dyn/closer.cgi?path=avro/avro-1.7.4/cpp/avro-cpp-1.7.4.tar.gz'
sha1 '1258c238692e4c7db97d62adead6efd9ef26ef71'
depends_on 'cmake' => :build
depends_on 'boost'
def install
system "cmake", ".", *std_cmake_args
system "make install"
end
end
|