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

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

  depends_on 'pkg-config' => :build

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