homebrew-core/Formula/duplicity.rb
Charlie Sharpsteen c3388b0757 Update duplicity to 6.11.0 (fixes S3)
Apparently 6.10.0 broke backups to Amazon S3 for some people.  This release
fixes this bug.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2010-11-20 22:46:11 +00:00

24 lines
665 B
Ruby

require 'formula'
class Duplicity <Formula
url 'http://code.launchpad.net/duplicity/0.6-series/0.6.11/+download/duplicity-0.6.11.tar.gz'
homepage 'http://www.nongnu.org/duplicity/'
md5 '1116be7aababa467336eac2092f66ab7'
depends_on 'librsync'
depends_on 'gnupg'
def install
ENV.universal_binary
system "python", "setup.py", "install", "--prefix=#{prefix}"
end
def caveats
<<-EOS.undent
If you are using a non-Homebrew-built Python, you may need to add:
#{HOMEBREW_PREFIX}/lib/pythonX.Y/site-packages
to your PYTHONPATH, where "X.Y" was the version of Python this
formula was built against.
EOS
end
end