24431fb50f
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
15 lines
459 B
Ruby
15 lines
459 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.1.1.tar.gz'
|
|
homepage 'http://www.indexdata.com/yaz'
|
|
md5 '0756b413083cd7424fb6c60f7c5da0dc'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
system "make install"
|
|
end
|
|
end
|