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