diff options
| author | Ron Rosson | 2010-05-27 12:40:35 -0500 |
|---|---|---|
| committer | Adam Vandenberg | 2010-05-27 13:12:58 -0700 |
| commit | f656abab07600d02fcbe78c4d68fbc1360c97da1 (patch) | |
| tree | 459840c5b8e17de0a10781f6d55b9f540a055cd5 | |
| parent | d460a0327f725b5bfed51510d597720e0dc7e331 (diff) | |
| download | homebrew-f656abab07600d02fcbe78c4d68fbc1360c97da1.tar.bz2 | |
CHMLIB
CHMLIB is a library for dealing with Microsoft ITSS/CHM format files.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/chmlib.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/chmlib.rb b/Library/Formula/chmlib.rb new file mode 100644 index 000000000..7b4c77f54 --- /dev/null +++ b/Library/Formula/chmlib.rb @@ -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 |
