homebrew-core/Formula/yaz.rb
Mark A. Matienzo 0330884545 yaz 4.2.7
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-08-03 14:48:24 -07:00

19 lines
545 B
Ruby

require 'formula'
# NOTE this formula conflicts with icu4c on Snow Leopard at the moment
# if this is a problem for you then please fix it! Thanks.
class Yaz < Formula
url 'http://ftp.indexdata.dk/pub/yaz/yaz-4.2.7.tar.gz'
homepage 'http://www.indexdata.com/yaz'
md5 '7bb9d007ce288b6c4095bd3a1f9ef627'
depends_on 'pkg-config' => :build
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-xml2"
system "make install"
end
end