homebrew-core/Formula/zsync.rb

13 lines
335 B
Ruby
Raw Normal View History

2010-01-01 12:43:14 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Zsync < Formula
2010-01-01 12:43:14 +00:00
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