homebrew-core/Formula/pazpar2.rb
Sven-S. Porst e88ce79069 pazpar2 1.6.39
add Formula for pazpar2 1.6.39

pazpar2 is a metasearch software by Index Data.

YMMV but my impression is that ICU support in the current
yaz setup does not work properly (I need an extra
dependency on icu4c for things to work correctly)
which means that ICU support in pazpar2 also does
not work (even though you typically want it).

As icu4c is called problematic, I am hesitant to
add that dependency to yaz myself. If anyone who is
familiar with both yaz and homebrew wants to discuss
this, please do get in touch.

Closes Homebrew/homebrew#27547.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-03-14 08:11:28 -07:00

17 lines
440 B
Ruby

require 'formula'
class Pazpar2 < Formula
homepage 'http://www.indexdata.com/pazpar2'
url 'http://ftp.indexdata.dk/pub/pazpar2/pazpar2-1.6.39.tar.gz'
sha1 '2be29efecc4f0ed5a6a300638b7ef6577d1e34e4'
depends_on 'pkg-config' => :build
depends_on 'yaz'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system 'make'
bin.install 'src/pazpar2'
end
end