2010-02-03 22:23:41 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Lzip < Formula
|
2010-02-03 22:23:41 +00:00
|
|
|
homepage 'http://www.nongnu.org/lzip/lzip.html'
|
2013-03-07 13:50:16 +00:00
|
|
|
url 'http://download.savannah.gnu.org/releases/lzip/lzip-1.14.tar.gz'
|
|
|
|
sha1 'ee54a3f39f7bf96ec677765f88b8458d0988bf10'
|
2010-02-03 22:23:41 +00:00
|
|
|
|
|
|
|
def install
|
2012-04-10 20:27:57 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}",
|
|
|
|
"CXX=#{ENV.cxx}",
|
|
|
|
"CXXFLAGS=#{ENV.cflags}"
|
|
|
|
system "make check"
|
|
|
|
ENV.j1
|
2010-02-03 22:23:41 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|