blob: 35e69567cacf46f5de7231c0f92b044f2bc33c9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Lzip <Formula
url 'http://mirrors.igsobe.com/nongnu/lzip/lzip-1.10.tar.gz'
homepage 'http://www.nongnu.org/lzip/lzip.html'
md5 '84879f20450a69a94e125a67f4724d12'
def install
system "./configure", "--prefix=#{prefix}", "CXX=#{ENV.cxx}"
system "make check"
system "make install"
end
end
|