aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/yaz.rb
blob: 881d991f4ca189b5590d008c66d5f998d59ae26f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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