aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/yaz.rb
blob: 9dbab896bea9828233d40f7b64e70f3cacda2381 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'formula'

# NOTE this formula conflicts with icu4c on Snow Leopard at the moment
# if this is a problem for you then please fix it! Thanks.

class Yaz <Formula
  url 'http://ftp.indexdata.dk/pub/yaz/yaz-4.1.4.tar.gz'
  homepage 'http://www.indexdata.com/yaz'
  md5 'f8068fc2c3d0f2c1d68ff197bd9f8795'

  depends_on 'pkg-config' => :build

  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--with-xml2"
    system "make install"
  end
end