2011-01-24 15:31:45 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Libzip < Formula
|
2011-01-24 15:31:45 +00:00
|
|
|
url 'http://www.nih.at/libzip/libzip-0.9.3.tar.bz2'
|
|
|
|
homepage 'http://www.nih.at/libzip/'
|
|
|
|
md5 '27610091ca27bf843a6646cd05de35b9'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}",
|
|
|
|
"CXX=#{ENV.cxx}", "CXXFLAGS=#{ENV.cflags}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|