aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Library/Formula/avro-c.rb9
1 files changed, 5 insertions, 4 deletions
diff --git a/Library/Formula/avro-c.rb b/Library/Formula/avro-c.rb
index da2fdbedf..828a5e97a 100644
--- a/Library/Formula/avro-c.rb
+++ b/Library/Formula/avro-c.rb
@@ -1,13 +1,14 @@
require 'formula'
class AvroC < Formula
- url 'http://www.apache.org/dyn/closer.cgi?path=avro/avro-1.5.1/c/avro-c-1.5.1.tar.gz'
+ url 'http://www.apache.org/dyn/closer.cgi?path=avro/avro-1.6.1/c/avro-c-1.6.1.tar.gz'
homepage 'http://avro.apache.org/'
- md5 '80228a62dd58ec19eb8d436258b91952'
+ md5 'd5c74692f9c4ff2f642b69fff56a6ae3'
+
+ depends_on 'cmake' => :build
def install
- system "./configure", "--disable-debug", "--disable-dependency-tracking",
- "--prefix=#{prefix}"
+ system "cmake . #{std_cmake_parameters}"
system "make install"
end
end