aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/reclass.rb
blob: 57c03c9f534b06d6e92004ca5bc60dcf46421305 (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
require "formula"

class Reclass < Formula
  homepage "http://reclass.pantsfullofunix.net/"
  head "https://github.com/madduck/reclass.git"
  url "https://github.com/madduck/reclass/archive/reclass-1.4.1.tar.gz"
  sha1 "43e38a484437c82a376a57d87b7af6674f1b97fd"

  bottle do
    cellar :any
    sha1 "4c055763f00605f006fb585f34ccae585b514dc8" => :yosemite
    sha1 "bf1b1acdd4475d3271f8b27eb41b0f414dac6147" => :mavericks
    sha1 "4d1a4805aef3db3858c6d6fa01e982eae3a8cd1b" => :mountain_lion
  end

  depends_on :python if MacOS.version <= :snow_leopard

  def install
    ENV.prepend_create_path "PYTHONPATH", "#{libexec}/lib/python2.7/site-packages"

    system "python", "setup.py", "install", "--prefix=#{libexec}"
    bin.install Dir[libexec/"bin/*"]
    bin.env_script_all_files(libexec+"bin", :PYTHONPATH => ENV["PYTHONPATH"])
  end

  test do
    system "#{bin}/reclass", "--version"
  end
end