blob: ebabe0d41d281f6fa31099efdfe58c28623bd7a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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
|