diff options
| author | Dan Walters | 2009-11-25 18:29:15 -0300 | 
|---|---|---|
| committer | Max Howell | 2009-12-05 16:43:35 +0000 | 
| commit | 258e2617127aea54c30a8c6f63d54c1389453dc1 (patch) | |
| tree | 01acd0c40341140fcaa16786a318d101eaa43ab6 /Library/Formula/librsync.rb | |
| parent | d50c09999cc7a52829087688b52f493a054111ff (diff) | |
| download | homebrew-258e2617127aea54c30a8c6f63d54c1389453dc1.tar.bz2 | |
duplicity 0.6.62
Duplicity backs directories by producing encrypted tar-format volumes and uploading them to a remote or local file server.
Diffstat (limited to 'Library/Formula/librsync.rb')
| -rw-r--r-- | Library/Formula/librsync.rb | 13 | 
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/librsync.rb b/Library/Formula/librsync.rb new file mode 100644 index 000000000..eef7aa76f --- /dev/null +++ b/Library/Formula/librsync.rb @@ -0,0 +1,13 @@ +require 'formula' + +class Librsync <Formula +  url 'http://prdownloads.sourceforge.net/project/librsync/librsync/0.9.7/librsync-0.9.7.tar.gz' +  homepage 'http://librsync.sourceforge.net/' +  md5 '24cdb6b78f45e0e83766903fd4f6bc84' + +  def install +    ENV.universal_binary +    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking" +    system "make install" +  end +end  | 
