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'
|
2012-04-10 20:27:57 +00:00
|
|
|
url 'http://download.savannah.gnu.org/releases/lzip/lzip-1.13.tar.gz'
|
|
|
|
sha1 '320175e693d9c373d345faac3c51a71b9a3980bc'
|
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
|