2009-11-25 21:29:15 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-11 06:13:01 +00:00
|
|
|
class Duplicity < Formula
|
2009-11-25 21:29:15 +00:00
|
|
|
homepage 'http://www.nongnu.org/duplicity/'
|
2012-05-31 18:01:20 +00:00
|
|
|
url 'http://code.launchpad.net/duplicity/0.6-series/0.6.19/+download/duplicity-0.6.19.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '07d72680d6b4850101a436f679793521a51f41ac'
|
2009-11-25 21:29:15 +00:00
|
|
|
|
|
|
|
depends_on 'librsync'
|
2010-07-08 22:41:08 +00:00
|
|
|
depends_on 'gnupg'
|
2009-11-25 21:29:15 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
ENV.universal_binary
|
2011-03-11 06:13:01 +00:00
|
|
|
# Install mostly into libexec
|
|
|
|
system "python", "setup.py", "install",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--install-purelib=#{libexec}",
|
2011-03-29 23:35:25 +00:00
|
|
|
"--install-platlib=#{libexec}",
|
|
|
|
"--install-scripts=#{bin}"
|
2010-07-04 05:18:26 +00:00
|
|
|
|
2011-03-11 06:13:01 +00:00
|
|
|
# Shift files around to avoid needing a PYTHONPATH
|
2012-02-15 05:36:58 +00:00
|
|
|
mv bin+'duplicity', bin+'duplicity.py'
|
|
|
|
mv Dir[bin+'*'], libexec
|
2012-02-12 19:38:49 +00:00
|
|
|
|
|
|
|
bin.install_symlink "#{libexec}/duplicity.py" => "duplicity"
|
|
|
|
bin.install_symlink "#{libexec}/rdiffdir"
|
2010-07-04 05:18:26 +00:00
|
|
|
end
|
2009-11-25 21:29:15 +00:00
|
|
|
end
|