aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/avro-cpp.rb
diff options
context:
space:
mode:
authorDaniel Russel2012-08-20 14:42:09 -0700
committerAdam Vandenberg2012-11-01 19:53:05 -0700
commit7e012c353ea71785e24676882424da910a33e40c (patch)
tree442927b41d6a10d5b5854955e58d357f1ec0c979 /Library/Formula/avro-cpp.rb
parent2fec62f8b9ffa5e8c7a774a94e2edbb249468029 (diff)
downloadhomebrew-7e012c353ea71785e24676882424da910a33e40c.tar.bz2
avro-cpp 1.7.2
Closes #14322. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/avro-cpp.rb')
-rw-r--r--Library/Formula/avro-cpp.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/avro-cpp.rb b/Library/Formula/avro-cpp.rb
new file mode 100644
index 000000000..dad5c843d
--- /dev/null
+++ b/Library/Formula/avro-cpp.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class AvroCpp < Formula
+ homepage 'http://avro.apache.org/'
+ url 'http://www.apache.org/dyn/closer.cgi?path=avro/avro-1.7.2/cpp/avro-cpp-1.7.2.tar.gz'
+ sha1 'f9116583e4f230288317410404b066664722f9e4'
+
+ depends_on 'cmake' => :build
+ depends_on 'boost'
+
+ def install
+ system "cmake", ".", *std_cmake_args
+ system "make install"
+ end
+end