homebrew-core/Formula/lzlib.rb
Matthew Kenny 3e780f6213 Upgrading lzlib To Version 1.5
lzlib version 1.4 is no longer on this site and is 404'ing. Version 1.5 appears to be the latest release.

http://download.savannah.gnu.org/releases/lzip/

Closes Homebrew/homebrew#22916.

Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
2013-09-28 17:22:27 -07:00

16 lines
446 B
Ruby

require 'formula'
class Lzlib < Formula
homepage 'http://www.nongnu.org/lzip/lzlib.html'
url 'http://download.savannah.gnu.org/releases/lzip/lzlib-1.5.tar.gz'
sha1 'b89060b72c8357e0d0ca5198d48e97b5650a6d2c'
def install
system "./configure", "--prefix=#{prefix}",
"CC=#{ENV.cc}",
"CFLAGS=#{ENV.cflags}"
system "make"
system "make check"
system "make install"
end
end