homebrew-core/Formula/metaproxy.rb
David Höppner 280f58a75a New formula metaproxy
Metaproxy is a proxy front end server that presents a single
Z39.50/SRW/SRU front end to multiple back end Z39.50 database
servers. It can also work in conjunction with Index Data's
library of gateways to access non-Z39.50-compliant database
servers.
2010-08-29 19:58:12 +02:00

16 lines
421 B
Ruby

require 'formula'
class Metaproxy <Formula
url 'http://ftp.indexdata.dk/pub/metaproxy/metaproxy-1.2.1.tar.gz'
homepage 'http://www.indexdata.com/metaproxy'
md5 '201af5bc981de16d16d27e0287c6a495'
depends_on 'yazpp'
depends_on 'boost'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end