aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rsync.rb
blob: 1e08d90dccc58bc093eb143d57b220ce43ef87b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class Rsync <Formula
  url 'http://rsync.samba.org/ftp/rsync/rsync-3.0.7.tar.gz'
  homepage 'http://rsync.samba.org/'
  md5 'b53525900817cf1ba7ad3a516ab5bfe9'

  def install
    system "./configure", "--prefix=#{prefix}",
                          "--disable-debug",
                          "--with-rsyncd-conf=#{prefix}/etc/rsyncd.conf",
                          "--enable-ipv6"
    system "make install"
  end
end