aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorLiam Cooke2009-09-22 00:56:26 +0100
committerMax Howell2009-09-29 23:30:20 +0100
commitc0cdc6cb4d1020b7b87f78bfba89ec9a3a16c98e (patch)
tree8b55edbdf9aad123e543554f3dbf331a0ce93c95 /Library
parent3994a536b3d53aabf6d9b2835ea281ce574c5772 (diff)
downloadhomebrew-c0cdc6cb4d1020b7b87f78bfba89ec9a3a16c98e.tar.bz2
Rsync formula (3.0.6; 10.5 comes with 2.6.9)
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/rsync.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/rsync.rb b/Library/Formula/rsync.rb
new file mode 100644
index 000000000..3d7c92a34
--- /dev/null
+++ b/Library/Formula/rsync.rb
@@ -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