homebrew-core/Formula/mackup.rb
Jean-Christophe GAY 5ade63c283 mackup 0.8.5
This new version now depends on docopt.

Fix Homebrew/homebrew#37997

Closes Homebrew/homebrew#38153.

Signed-off-by: Brett Koonce <koonce@gmail.com>
2015-03-28 22:58:05 -07:00

35 lines
1.1 KiB
Ruby

require "formula"
class Mackup < Formula
homepage "https://github.com/lra/mackup"
url "https://pypi.python.org/packages/source/m/mackup/mackup-0.8.5.tar.gz"
sha256 "5c74d7ded75304863b2be8b13ca58319f92f22f58dd778800326fb7618a8a7e6"
head "https://github.com/lra/mackup.git"
depends_on :python if MacOS.version <= :snow_leopard
resource "docopt" do
url "https://pypi.python.org/packages/source/d/docopt/docopt-0.6.2.tar.gz"
sha256 "49b3a825280bd66b3aa83585ef59c4a8c82f2c8a522dbe754a8bc8d08c85c491"
end
def install
ENV.prepend_create_path "PYTHONPATH", libexec/"vendor/lib/python2.7/site-packages"
%w[docopt].each do |r|
resource(r).stage do
system "python", *Language::Python.setup_install_args(libexec/"vendor")
end
end
ENV.prepend_create_path "PYTHONPATH", libexec/"lib/python2.7/site-packages"
system "python", *Language::Python.setup_install_args(libexec)
bin.install Dir[libexec/"bin/*"]
bin.env_script_all_files(libexec/"bin", :PYTHONPATH => ENV["PYTHONPATH"])
end
test do
system "#{bin}/mackup", "--help"
end
end