aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorFlorian Sowade2010-07-09 11:38:08 +0200
committerAdam Vandenberg2010-07-09 06:59:15 -0700
commitbf80ab14f9e317d076daee5a8af77609f4acef06 (patch)
tree26583169ee76ce37ebd5f31d456462a43a53048f /Library/Formula
parentc23d632f1b66e6bece913630ec182c555a1e28cf (diff)
downloadhomebrew-bf80ab14f9e317d076daee5a8af77609f4acef06.tar.bz2
New Formula open-vcdiff
An encoder and decoder for the format described in RFC 3284: "The VCDIFF Generic Differencing and Compression Data Format". Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/open-vcdiff.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/open-vcdiff.rb b/Library/Formula/open-vcdiff.rb
new file mode 100644
index 000000000..1a34098a8
--- /dev/null
+++ b/Library/Formula/open-vcdiff.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class OpenVcdiff <Formula
+ url 'http://open-vcdiff.googlecode.com/files/open-vcdiff-0.7.tar.gz'
+ homepage 'http://code.google.com/p/open-vcdiff/'
+ md5 'c6a3f29311d937911f508b8a474b5f57'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "make install"
+ end
+end