aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rsync.rb
blob: 3f26428c08c8b8632e829d92193e9e4f294dd9f4 (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.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