aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/duplicity.rb
blob: 05f08acdb1983fed0ef59d3170afaab5e8250bc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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