aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDouglas Creager2010-09-23 11:51:38 -0400
committerAdam Vandenberg2010-09-27 21:31:24 -0700
commit759295a43bc5a0176b045911fbdd892411d3e376 (patch)
tree91244845e96f9164f48a232cfaf441ff301304fd /Library/Formula
parentdf062f2687d63ba616555468b09148393d3f0b73 (diff)
downloadhomebrew-759295a43bc5a0176b045911fbdd892411d3e376.tar.bz2
Apache Avro C library (v1.4.0)
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>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/avro-c.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/avro-c.rb b/Library/Formula/avro-c.rb
new file mode 100644
index 000000000..ca56fa122
--- /dev/null
+++ b/Library/Formula/avro-c.rb
@@ -0,0 +1,13 @@
+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