2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-28 01:38:39 +00:00
|
|
|
|
|
|
|
# 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
|
2010-08-29 17:41:29 +00:00
|
|
|
url 'http://ftp.indexdata.dk/pub/yaz/yaz-4.0.12.tar.gz'
|
2009-09-28 01:38:39 +00:00
|
|
|
homepage 'http://www.indexdata.com/yaz'
|
2010-08-29 17:41:29 +00:00
|
|
|
md5 '64896765604f53dcc7f8bdea921af6b3'
|
2009-09-28 01:38:39 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|