aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cwm.rb
blob: 30fbb0b0d4f7727f60a184739a15174b133a7321 (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
require "formula"

class Cwm < Formula
  homepage "https://github.com/chneukirchen/cwm"
  url "https://github.com/chneukirchen/cwm/archive/v5.5.tar.gz"
  sha1 "0e21a48b4973beb7ddf265bea48b73b0c39a589e"

  bottle do
    cellar :any
    sha1 "4794ec9443e9ff59c3af6f85ba0bbac08fad496e" => :mavericks
    sha1 "2750622d8304cc2a008586e4b7b3cc6bfa82b3e2" => :mountain_lion
    sha1 "28a681a7185ab875e77eb664679c21751e871855" => :lion
  end

  depends_on :x11
  depends_on "pkg-config" => :build

  patch do
    # Fix 10.9 build. Merged upstream.
    url "https://github.com/chneukirchen/cwm/commit/c7f481.diff"
    sha1 "b91bd1b14fe9d4fef287be19eabc05762e5cf047"
  end

  def install
    system "make", "PREFIX=#{prefix}", "install"
  end
end