Rsync formula (3.0.6; 10.5 comes with 2.6.9)

This commit is contained in:
Liam Cooke 2009-09-22 00:56:26 +01:00 committed by Max Howell
parent 7afc8e5dbe
commit 8fdd59fcf7

15
Formula/rsync.rb Normal file
View file

@ -0,0 +1,15 @@
require 'brewkit'
class Rsync <Formula
url 'http://rsync.samba.org/ftp/rsync/rsync-3.0.6.tar.gz'
homepage 'http://rsync.samba.org/'
md5 'e9865d093a18e4668b9d31b635dc8e99'
def install
system "./configure", "--prefix=#{prefix}",
"--disable-debug",
"--with-rsyncd-conf=#{prefix}/etc/rsyncd.conf",
"--enable-ipv6"
system "make install"
end
end