blob: c559b7815fccc936aec5c94184fe5a78bb8cb2db (
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
43
44
45
46
47
  | 
require "formula"
class Cheat < Formula
  homepage "https://github.com/chrisallenlane/cheat"
  url "https://github.com/chrisallenlane/cheat/archive/2.1.1.tar.gz"
  sha1 "9fc16db7a8eca46b484fe0d03c6cbbfe88674c48"
  head "https://github.com/chrisallenlane/cheat.git"
  bottle do
    cellar :any
    sha1 "2065b733837eec5819c19da3cc4b1010b840f463" => :yosemite
    sha1 "5a3913a93b5f17cc290d21eac872e0c6005d4139" => :mavericks
    sha1 "1c8817ce2a46114339a76defe1c45ce2f4b81e4c" => :mountain_lion
  end
  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"
    sha1 "224a3ec08b56445a1bd1583aad06b00692671e04"
  end
  resource "Pygments" do
    url "https://pypi.python.org/packages/source/P/Pygments/Pygments-2.0.1.tar.gz"
    sha1 "b9e9236693ccf6e86414e8578bf8874181f409de"
  end
  def install
    ENV["PYTHONPATH"] = lib+"python2.7/site-packages"
    ENV.prepend_create_path "PYTHONPATH", libexec+"lib/python2.7/site-packages"
    resources.each do |r|
      r.stage { system "python", *Language::Python.setup_install_args(libexec) }
    end
    system "python", *Language::Python.setup_install_args(prefix)
    bash_completion.install "cheat/autocompletion/cheat.bash"
    zsh_completion.install "cheat/autocompletion/cheat.zsh" => "_cheat"
    bin.env_script_all_files(libexec+"bin", :PYTHONPATH => ENV["PYTHONPATH"])
  end
  test do
    system "#{bin}/cheat", "tar"
  end
end
  |