diff options
Diffstat (limited to 'Library')
| -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 |
