homebrew-core/Formula/yaz.rb
Brett Koonce 6b1fa8c10b yaz 4.2.60
Closes Homebrew/homebrew#20530.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-15 19:54:00 -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.60.tar.gz'
sha1 'ed13a8ab417a93a4f269099e2c3e4c27a5f336bf'
depends_on 'pkg-config' => :build
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-xml2"
system "make install"
end
end