diff options
| author | Kieran Pilkington | 2009-09-28 14:38:39 +1300 |
|---|---|---|
| committer | Max Howell | 2009-09-29 16:26:38 +0100 |
| commit | be8847ec2036140c2839387db32d6dcec02265cd (patch) | |
| tree | 46c52a6b79ab4ed573901e84441385096e9ab3c2 /Library | |
| parent | 56b44e8ace6dbcad02db75983d95d0ab45e7aa3b (diff) | |
| download | homebrew-be8847ec2036140c2839387db32d6dcec02265cd.tar.bz2 | |
YAZ 3.0.48 formula
A programmers’ toolkit supporting the development of Z39.50/SRW/SRU clients
and servers.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/yaz.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/yaz.rb b/Library/Formula/yaz.rb new file mode 100644 index 000000000..0039a6d55 --- /dev/null +++ b/Library/Formula/yaz.rb @@ -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 |
