aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rsync.rb
blob: 3d7c92a34715b5ab583da0d0d11b74b740b86d8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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