7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
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.10.tar.gz'
|
|
homepage 'http://www.indexdata.com/yaz'
|
|
md5 'e72edf163640a6a61fd41c12f2c01d2d'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
system "make install"
|
|
end
|
|
end
|