CHMLIB is a library for dealing with Microsoft ITSS/CHM format files.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Ron Rosson 2010-05-27 12:40:35 -05:00 committed by Adam Vandenberg
parent 8450319c0f
commit f7c283e8bb
1 changed files with 12 additions and 0 deletions

12
Formula/chmlib.rb Normal file
View File

@ -0,0 +1,12 @@
require 'formula'
class Chmlib <Formula
url 'http://www.jedrea.com/chmlib/chmlib-0.40.tar.gz'
homepage 'http://www.jedrea.com/chmlib'
md5 '96b8e9ac52015902941862171f5daa4c'
def install
system "./configure", "--disable-io64", "--enable-examples", "--prefix=#{prefix}"
system "make install"
end
end