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/'
|
2014-01-15 15:22:37 +00:00
|
|
|
url 'http://www.nih.at/libzip/libzip-0.11.2.tar.gz'
|
|
|
|
sha1 'eeb3b5567fcf3532fa4bcb6440a87c7ad8507d2d'
|
2011-01-24 15:31:45 +00:00
|
|
|
|
2014-02-24 16:45:09 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
|
|
|
sha1 "ed81b49df9a37a76c79ea81ea24270e85bcfcf7b" => :mavericks
|
|
|
|
sha1 "c6ae9c8a7d990eda3120dcdedc8eaedba24be174" => :mountain_lion
|
|
|
|
sha1 "075beaec1419bf7b0aaeb03a492acc70a731e3ba" => :lion
|
|
|
|
end
|
|
|
|
|
2014-01-23 14:34:30 +00:00
|
|
|
option :universal
|
|
|
|
|
2011-01-24 15:31:45 +00:00
|
|
|
def install
|
2014-01-23 14:34:30 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
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
|