homebrew-core/Formula/librsync.rb
Dan Walters c34a3e3c42 duplicity 0.6.62
Duplicity backs directories by producing encrypted tar-format volumes and uploading them to a remote or local file server.
2009-12-05 16:43:35 +00:00

13 lines
402 B
Ruby

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