homebrew-core/Formula/yaz.rb
Brett Koonce 4b54f5fa2d yaz 4.2.63
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-07-17 20:15:15 -07:00

16 lines
424 B
Ruby

require 'formula'
class Yaz < Formula
homepage 'http://www.indexdata.com/yaz'
url 'http://ftp.indexdata.dk/pub/yaz/yaz-4.2.63.tar.gz'
sha1 'b5086f5831ca7987d5e35dcb1fa8d3e45b19fdb1'
depends_on 'pkg-config' => :build
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-xml2"
system "make install"
end
end