aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/yazpp.rb
diff options
context:
space:
mode:
authorDavid Höppner2010-08-29 19:52:35 +0200
committerDavid Höppner2010-08-29 19:52:35 +0200
commit0cf6a1b77284525e83c0589449e7d68d0c44c204 (patch)
tree7c5297fd3688d33cd407c05379d21135e00f3b7c /Library/Formula/yazpp.rb
parentd85bfb01af662ee69a72920d5c7f2ce6ac1a7438 (diff)
downloadhomebrew-0cf6a1b77284525e83c0589449e7d68d0c44c204.tar.bz2
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++.
Diffstat (limited to 'Library/Formula/yazpp.rb')
-rw-r--r--Library/Formula/yazpp.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/yazpp.rb b/Library/Formula/yazpp.rb
new file mode 100644
index 000000000..10903e895
--- /dev/null
+++ b/Library/Formula/yazpp.rb
@@ -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