15 lines
460 B
Ruby
15 lines
460 B
Ruby
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.0.12.tar.gz'
|
|
homepage 'http://www.indexdata.com/yaz'
|
|
md5 '64896765604f53dcc7f8bdea921af6b3'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
system "make install"
|
|
end
|
|
end
|