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