homebrew-core/Formula/zsync.rb

14 lines
351 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
homepage 'http://zsync.moria.org.uk/'
2012-03-10 21:59:08 +00:00
url 'http://zsync.moria.org.uk/download/zsync-0.6.2.tar.bz2'
sha1 '5e69f084c8adaad6a677b68f7388ae0f9507617a'
2010-01-01 12:43:14 +00:00
def install
2012-03-10 21:59:08 +00:00
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
2010-01-01 12:43:14 +00:00
system "make install"
end
end