Rsync formula (3.0.6; 10.5 comes with 2.6.9)
This commit is contained in:
parent
7afc8e5dbe
commit
8fdd59fcf7
1 changed files with 15 additions and 0 deletions
15
Formula/rsync.rb
Normal file
15
Formula/rsync.rb
Normal 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
|
Loading…
Reference in a new issue