20 lines
578 B
Ruby
20 lines
578 B
Ruby
require 'formula'
|
|
|
|
class Chmlib < Formula
|
|
homepage 'http://www.jedrea.com/chmlib'
|
|
url 'http://www.jedrea.com/chmlib/chmlib-0.40.tar.gz'
|
|
sha1 '8d9e4b9b79a23974aa06fb792ae652560bac5c4e'
|
|
|
|
bottle do
|
|
cellar :any
|
|
revision 1
|
|
sha1 "268c1b15456895dcf00e17826c60b115e8741dac" => :yosemite
|
|
sha1 "9857eebe67646472c638115c014289249992b515" => :mavericks
|
|
sha1 "e5c765036fd196e3c659b9cc21e3b024ab606f33" => :mountain_lion
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--disable-io64", "--enable-examples", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|