homebrew-core/Formula/lzlib.rb

24 lines
684 B
Ruby
Raw Normal View History

2014-09-22 05:10:05 +00:00
require "formula"
2011-03-10 05:11:03 +00:00
class Lzlib < Formula
2014-09-22 05:10:05 +00:00
homepage "http://www.nongnu.org/lzip/lzlib.html"
url "http://download.savannah.gnu.org/releases/lzip/lzlib/lzlib-1.6.tar.gz"
sha1 "4a24e4d17df3fd90f53866ace922c831f26600f6"
2014-04-10 10:40:32 +00:00
bottle do
2014-09-22 05:23:14 +00:00
cellar :any
sha1 "9a805d032470d6d0f1f45fea1498e48709816bc7" => :mavericks
sha1 "c6591a5842abc95dbfeec294555193b3e1cd85c7" => :mountain_lion
sha1 "3e1261f5acf7ec50ea10dc55d6ed5e22368bf39c" => :lion
2014-04-10 10:40:32 +00:00
end
def install
system "./configure", "--prefix=#{prefix}",
"CC=#{ENV.cc}",
"CFLAGS=#{ENV.cflags}"
system "make"
system "make check"
system "make install"
end
end