lzip: updated 1.11 and formula updates

Formula updates:

* mandir
* CXXFLAGS
* remove `make check`

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Tianyi Cui 2010-10-04 21:24:23 +08:00 committed by Adam Vandenberg
parent 1bb89e3a10
commit 0ebbd62657
1 changed files with 4 additions and 4 deletions

View File

@ -1,13 +1,13 @@
require 'formula'
class Lzip <Formula
url 'http://download.savannah.gnu.org/releases-noredirect/lzip/lzip-1.10.tar.gz'
url 'http://download.savannah.gnu.org/releases/lzip/lzip-1.11.tar.gz'
homepage 'http://www.nongnu.org/lzip/lzip.html'
md5 '84879f20450a69a94e125a67f4724d12'
md5 'ba9d0a705e47bcd2b73145d238aa7b58'
def install
system "./configure", "--prefix=#{prefix}", "CXX=#{ENV.cxx}"
system "make check"
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}",
"CXX=#{ENV.cxx}", "CXXFLAGS=#{ENV.cflags}"
system "make install"
end
end