67e45a74fb
Avro is the Apache Hadoop serialization format. This formula installs the C library for reading Avro data. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
379 B
Ruby
13 lines
379 B
Ruby
require 'formula'
|
|
|
|
class AvroC <Formula
|
|
url 'http://mirror.atlanticmetro.net/apache/avro/avro-1.4.0/c/avro-c-1.4.0.tar.gz'
|
|
homepage 'http://avro.apache.org/'
|
|
md5 'fdcd3916cbfc459a6938141028cf35e6'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|