homebrew-core/Formula/yaz.rb
Brett Koonce 14505aa4db yaz 4.2.43
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-10-21 08:29: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.43.tar.gz'
sha1 '4dfbab0ae75d5f392d865327061ff0219442d1fd'
depends_on 'pkg-config' => :build
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-xml2"
system "make install"
end
end