blob: a84f910b06e4f969e3fcd11a4c325f9f5d13a3c1 (
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.63.tar.gz'
sha1 'b5086f5831ca7987d5e35dcb1fa8d3e45b19fdb1'
depends_on 'pkg-config' => :build
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-xml2"
system "make install"
end
end
|