aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/duplicity.rb
blob: b96441c7378c07441b4df6b11c8b2bc67b6f2b23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
require "formula"

class Duplicity < Formula
  homepage "http://www.nongnu.org/duplicity/"
  url "http://code.launchpad.net/duplicity/0.6-series/0.6.24/+download/duplicity-0.6.24.tar.gz"
  sha1 "1d0bab80cb9465080179307d969e292c7145c714"

  depends_on :python if MacOS.version <= :snow_leopard
  depends_on "librsync"
  depends_on "gnupg"

  option :universal

  resource "lockfile" do
    url "https://pypi.python.org/packages/source/l/lockfile/lockfile-0.9.1.tar.gz"
    sha1 "9870cc7e7d4b23f0b6c39cf6ba597c87871ac6de"
  end

  resource "paramiko" do
    url "https://pypi.python.org/packages/source/p/paramiko/paramiko-1.14.0.tar.gz"
    sha1 "54a34873b09c3dd3ea7090caa914908b3e0f1822"
  end

  def install
    ENV["PYTHONPATH"] = lib+"python2.7/site-packages"

    ENV.universal_binary if build.universal?

    ENV.prepend_create_path "PYTHONPATH", libexec+"lib/python2.7/site-packages"
    install_args = [ "setup.py", "install", "--prefix=#{libexec}" ]
    resource("lockfile").stage { system "python", *install_args }
    resource("paramiko").stage { system "python", *install_args }

    system "python", "setup.py", "install", "--prefix=#{prefix}"

    bin.env_script_all_files(libexec+"bin", :PYTHONPATH => ENV["PYTHONPATH"])
  end

  test do
    system bin/"duplicity", "--version"
  end
end