blob: c3ead2da65d16877b2f90585476493879dd654d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Libzip < Formula
url 'http://www.nih.at/libzip/libzip-0.10.1.tar.bz2'
homepage 'http://www.nih.at/libzip/'
md5 'd3e933ae049204badccf605f20aaecde'
def install
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}",
"CXX=#{ENV.cxx}", "CXXFLAGS=#{ENV.cflags}"
system "make install"
end
end
|