aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/chmlib.rb
blob: c17d3d3e5483b0da65700871d24db56dff51b753 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

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

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