diff options
| author | Florian Sowade | 2010-07-09 11:38:08 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2010-07-09 06:59:15 -0700 |
| commit | bf80ab14f9e317d076daee5a8af77609f4acef06 (patch) | |
| tree | 26583169ee76ce37ebd5f31d456462a43a53048f /Library | |
| parent | c23d632f1b66e6bece913630ec182c555a1e28cf (diff) | |
| download | homebrew-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')
| -rw-r--r-- | Library/Formula/open-vcdiff.rb | 12 |
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 |
