2010-12-15 10:17:49 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Lzlib < Formula
|
2011-11-07 23:27:44 +00:00
|
|
|
url 'http://download.savannah.gnu.org/releases/lzip/lzlib-1.2.tar.gz'
|
2010-12-15 10:17:49 +00:00
|
|
|
homepage 'http://www.nongnu.org/lzip/lzlib.html'
|
2011-11-07 23:27:44 +00:00
|
|
|
md5 '7a77358000929bb0a31ad6b68a139b9d'
|
2010-12-15 10:17:49 +00:00
|
|
|
|
|
|
|
def install
|
2011-11-07 23:27:44 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}",
|
|
|
|
"CXX=#{ENV.cxx}",
|
|
|
|
"CPPFLAGS=#{ENV.cppflags}",
|
|
|
|
"CXXFLAGS=#{ENV.cflags}",
|
|
|
|
"LDFLAGS=#{ENV.ldflags}"
|
2010-12-15 10:17:49 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|