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++.
This commit is contained in:
David Höppner 2010-08-29 19:52:35 +02:00
parent 2a6eb2298a
commit ebd60a7a4d

15
Formula/yazpp.rb Normal file
View file

@ -0,0 +1,15 @@
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