homebrew-core/Formula/lzip.rb
Tianyi Cui 0ebbd62657 lzip: updated 1.11 and formula updates
Formula updates:

* mandir
* CXXFLAGS
* remove `make check`

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-10-04 07:00:01 -07:00

13 lines
389 B
Ruby

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