aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/chmlib.rb
blob: 96c33f94498f21c2a46f94eae1928ccc3850d92c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'formula'

class Chmlib < Formula
  homepage 'http://www.jedrea.com/chmlib'
  url 'http://www.jedrea.com/chmlib/chmlib-0.40.tar.gz'
  sha1 '8d9e4b9b79a23974aa06fb792ae652560bac5c4e'

  bottle do
    cellar :any
    revision 1
    sha1 "268c1b15456895dcf00e17826c60b115e8741dac" => :yosemite
    sha1 "9857eebe67646472c638115c014289249992b515" => :mavericks
    sha1 "e5c765036fd196e3c659b9cc21e3b024ab606f33" => :mountain_lion
  end

  def install
    system "./configure", "--disable-io64", "--enable-examples", "--prefix=#{prefix}"
    system "make install"
  end
end