YAZ 3.0.48 formula
A programmers’ toolkit supporting the development of Z39.50/SRW/SRU clients and servers.
This commit is contained in:
parent
6248d3c1e5
commit
1bf2879268
1 changed files with 17 additions and 0 deletions
17
Formula/yaz.rb
Normal file
17
Formula/yaz.rb
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
require 'brewkit'
|
||||||
|
|
||||||
|
# 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-3.0.48.tar.gz'
|
||||||
|
homepage 'http://www.indexdata.com/yaz'
|
||||||
|
md5 '6cf27fd487c6ae7d0cbc6dc9e8ae3ba8'
|
||||||
|
|
||||||
|
# depends_on 'openssl' # we can suffice with the os x default for now
|
||||||
|
|
||||||
|
def install
|
||||||
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
||||||
|
system "make install"
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in a new issue