aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-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