blob: b84360ad4c4f29e209e95cb59035f56f367eafda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
  | 
require 'formula'
class Chmlib < Formula
  homepage 'http://www.jedrea.com/chmlib'
  url 'http://www.jedrea.com/chmlib/chmlib-0.40.tar.gz'
  sha1 '8d9e4b9b79a23974aa06fb792ae652560bac5c4e'
  def install
    system "./configure", "--disable-io64", "--enable-examples", "--prefix=#{prefix}"
    system "make install"
  end
end
  |