homebrew-core/Formula/libzip.rb

16 lines
425 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Libzip < Formula
homepage 'http://www.nih.at/libzip/'
2013-01-29 05:07:34 +00:00
url 'http://www.nih.at/libzip/libzip-0.10.1.tar.bz2'
sha1 '04be811a1919e1063a1f5210671181b7b5416d45'
def install
2013-01-29 05:07:34 +00:00
system "./configure", "--prefix=#{prefix}",
"--mandir=#{man}",
"CXX=#{ENV.cxx}",
"CXXFLAGS=#{ENV.cflags}"
system "make install"
end
end