duplicity 0.6.62

Duplicity backs directories by producing encrypted tar-format volumes and uploading them to a remote or local file server.
master
Dan Walters 2009-11-25 18:29:15 -03:00 committed by Max Howell
parent b2ead90632
commit c34a3e3c42
2 changed files with 27 additions and 0 deletions

14
Formula/duplicity.rb Normal file
View File

@ -0,0 +1,14 @@
require 'formula'
class Duplicity <Formula
url 'http://code.launchpad.net/duplicity/0.6-series/0.6.06/+download/duplicity-0.6.06.tar.gz'
homepage 'http://www.nongnu.org/duplicity/'
md5 'abbbbcde4af24efffbc218583d581453'
depends_on 'librsync'
def install
ENV.universal_binary
system "python", "setup.py", "install", "--prefix=#{prefix}"
end
end

13
Formula/librsync.rb Normal file
View File

@ -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