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
|
|
|
homepage 'http://www.nih.at/libzip/'
|
2013-05-18 01:50:56 +00:00
|
|
|
url 'http://www.nih.at/libzip/libzip-0.11.1.tar.gz'
|
|
|
|
sha1 '729a141fd3b47f34a94e8fd8a9ee1b25f0c8e922'
|
2011-01-24 15:31:45 +00:00
|
|
|
|
|
|
|
def install
|
2013-01-29 05:07:34 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}",
|
|
|
|
"--mandir=#{man}",
|
|
|
|
"CXX=#{ENV.cxx}",
|
|
|
|
"CXXFLAGS=#{ENV.cflags}"
|
2011-01-24 15:31:45 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|