blob: 46edc94f00ed54ca2cd795e3d9db08a6c7084ae7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
class AvroCpp < Formula
homepage "http://avro.apache.org/"
url "http://www.apache.org/dyn/closer.cgi?path=avro/avro-1.7.7/cpp/avro-cpp-1.7.7.tar.gz"
sha1 "2fdc16bfee5786053846341d89d11160df8d57d4"
depends_on "pkg-config" => :build
depends_on "cmake" => :build
depends_on "boost"
def install
system "cmake", ".", *std_cmake_args
system "make install"
end
end
|