aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2010-02-07 11:22:47 -0800
committerAdam Vandenberg2010-02-07 11:22:47 -0800
commitc9128c0582b84ba7c1bb1f948322c2d17e70ca0a (patch)
treef2757a8cc356cfad00b1f179c493e49f657ef61e /Library/Formula
parent5286f9dc89b9dc747dbc752fa4ba6f6e9566e62e (diff)
parent884797ccbd1c460c5edef8885fdc562c45114426 (diff)
downloadhomebrew-c9128c0582b84ba7c1bb1f948322c2d17e70ca0a.tar.bz2
Merge branch 'F-zsync' of git://arthur.barton.de/homebrew-alex
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/zsync.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/zsync.rb b/Library/Formula/zsync.rb
new file mode 100644
index 000000000..f5635a76d
--- /dev/null
+++ b/Library/Formula/zsync.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Zsync <Formula
+ url 'http://zsync.moria.org.uk/download/zsync-0.6.1.tar.bz2'
+ homepage 'http://zsync.moria.org.uk/'
+ md5 'cab880e6cb3a5b0976b0930a5b6e3256'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end