diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/lzlib.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/lzlib.rb b/Library/Formula/lzlib.rb index 46ad1804e..b70d9e957 100644 --- a/Library/Formula/lzlib.rb +++ b/Library/Formula/lzlib.rb @@ -1,16 +1,16 @@ require 'formula' class Lzlib < Formula - url 'http://download.savannah.gnu.org/releases/lzip/lzlib-1.2.tar.gz' homepage 'http://www.nongnu.org/lzip/lzlib.html' - md5 '7a77358000929bb0a31ad6b68a139b9d' + url 'http://download.savannah.gnu.org/releases/lzip/lzlib-1.3.tar.gz' + sha1 '788de95072cd2cf89d763b441a7fc76395193265' def install system "./configure", "--prefix=#{prefix}", - "CXX=#{ENV.cxx}", - "CPPFLAGS=#{ENV.cppflags}", - "CXXFLAGS=#{ENV.cflags}", - "LDFLAGS=#{ENV.ldflags}" + "CC=#{ENV.cc}", + "CFLAGS=#{ENV.cflags}" + system "make" + system "make check" system "make install" end end |
