homebrew-core/Formula/chmlib.rb

22 lines
906 B
Ruby
Raw Normal View History

2011-03-10 05:11:03 +00:00
class Chmlib < Formula
desc "Library for dealing with Microsoft ITSS/CHM files"
2015-07-07 04:35:40 +00:00
homepage "http://www.jedrea.com/chmlib"
url "http://www.jedrea.com/chmlib/chmlib-0.40.tar.gz"
mirror "https://mirrors.kernel.org/debian/pool/main/c/chmlib/chmlib_0.40.orig.tar.gz"
sha256 "512148ed1ca86dea051ebcf62e6debbb00edfdd9720cde28f6ed98071d3a9617"
2014-07-03 12:32:20 +00:00
bottle do
cellar :any
2015-07-07 05:55:57 +00:00
revision 2
2015-09-22 11:50:24 +00:00
sha256 "6b834a6ae6e95f8daaa726fd6ae1a2d3e60335f98862fea9e790c24e5a6411d1" => :el_capitan
2015-07-07 05:55:57 +00:00
sha256 "bdc19058cbf1690e960bd88d06f6c8b2ff47f8b743947eb82c259ba394881a65" => :yosemite
sha256 "366c564a2cd0185d84ff6892f5d773f80ddee50f6db39e763060b3ebb31413b3" => :mavericks
sha256 "a62f8bdc1ffa2dc6084a61c78a1027c2215e0a2986ffeae755701769c667b3a8" => :mountain_lion
2014-07-03 12:32:20 +00:00
end
def install
system "./configure", "--disable-io64", "--enable-examples", "--prefix=#{prefix}"
2015-07-07 04:35:40 +00:00
system "make", "install"
end
end