blob: 7ba8260563b294e09a62a5b12ec3390f5f32f94f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
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
system "cmake", ".", *std_cmake_args
system "make install"
end
end
|