Skip to content

Instantly share code, notes, and snippets.

@nagae
Created May 7, 2012 06:23
Show Gist options
  • Select an option

  • Save nagae/2626237 to your computer and use it in GitHub Desktop.

Select an option

Save nagae/2626237 to your computer and use it in GitHub Desktop.
rsync-3.0.7.tar.gz
require 'formula'
class Rsync <Formula
url 'http://rsync.samba.org/ftp/rsync/src/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
@nagae
Copy link
Copy Markdown
Author

nagae commented May 7, 2012

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment