6a8953d115
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
13 lines
390 B
Ruby
13 lines
390 B
Ruby
require 'formula'
|
|
|
|
class Lzip < Formula
|
|
url 'http://download.savannah.gnu.org/releases/lzip/lzip-1.12.tar.gz'
|
|
md5 '69a40172db5ce896b58d862c50fcd517'
|
|
homepage 'http://www.nongnu.org/lzip/lzip.html'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}",
|
|
"CXX=#{ENV.cxx}", "CXXFLAGS=#{ENV.cflags}"
|
|
system "make install"
|
|
end
|
|
end
|