blob: 923e434bc05b72bd1d571ccdcf1cf7e124ad6d80 (
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.1/c/avro-c-1.6.1.tar.gz'
md5 'd5c74692f9c4ff2f642b69fff56a6ae3'
depends_on 'cmake' => :build
def install
system "cmake #{std_cmake_parameters} ."
system "make install"
end
end
|