aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/chmlib.rb
blob: 713c63f05cc58fb4ef5d106eb9efdd0ef547362c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
    sha1 "e65fbdafd130028ed1383a8318612917e6f4eda5" => :mavericks
    sha1 "bd7d91259ed29e4fd804ef8ae45ab57ac1559da8" => :mountain_lion
    sha1 "cc6c36eca6407cfaa925aca3c86dc875adc7566a" => :lion
  end

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