homebrew-core/Formula/yazpp.rb
David Höppner ebd60a7a4d New formula yazpp
AZ++ is an application programming interface (API) to YAZ which
supports the development of Z39.50/SRW/SRU client and server
applications using C++.
2010-08-29 19:52:35 +02:00

15 lines
363 B
Ruby

require 'formula'
class Yazpp <Formula
url 'http://ftp.indexdata.dk/pub/yazpp/yazpp-1.2.3.tar.gz'
homepage 'http://www.indexdata.com/yazpp'
md5 '9144237027ce43540b8f5fd7577f5432'
depends_on 'yaz'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end