homebrew-core/Formula/chmlib.rb
2012-09-03 11:36:42 -07:00

12 lines
327 B
Ruby

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