Skip to content

Instantly share code, notes, and snippets.

@nagae
Last active October 4, 2015 12:58
Show Gist options
  • Select an option

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

Select an option

Save nagae/2640597 to your computer and use it in GitHub Desktop.
rsync-3.0.9
require 'formula'
class Rsync <Formula
url 'http://rsync.samba.org/ftp/rsync/src/rsync-3.0.9.tar.gz'
homepage 'http://rsync.samba.org/'
md5 '5ee72266fe2c1822333c407e1761b92b'
sha1 'c64c8341984aea647506eb504496999fd968ddfc'
def install
system "./configure", "--prefix=#{prefix}",
"--disable-debug",
"--with-rsyncd-conf=#{prefix}/etc/rsyncd.conf",
"--enable-ipv6"
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment