14 lines
335 B
Ruby
14 lines
335 B
Ruby
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
|