2011-01-24 15:31:45 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Libzip < Formula
|
2012-03-26 05:58:29 +00:00
|
|
|
url 'http://www.nih.at/libzip/libzip-0.10.1.tar.bz2'
|
2011-01-24 15:31:45 +00:00
|
|
|
homepage 'http://www.nih.at/libzip/'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '04be811a1919e1063a1f5210671181b7b5416d45'
|
2011-01-24 15:31:45 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}",
|
|
|
|
"CXX=#{ENV.cxx}", "CXXFLAGS=#{ENV.cflags}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|