64afeec6d4
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
26 lines
773 B
Ruby
26 lines
773 B
Ruby
require 'formula'
|
|
|
|
class Redland < Formula
|
|
homepage 'http://librdf.org/'
|
|
url 'http://download.librdf.org/source/redland-1.0.15.tar.gz'
|
|
md5 'b0deb87f3c7d3237a3d587c1e0f2f266'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'raptor'
|
|
depends_on 'rasqal'
|
|
depends_on 'berkeley-db' => :optional
|
|
|
|
fails_with :llvm do
|
|
build 2334
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--with-sqlite=yes",
|
|
"--enable-modular=no", # see http://bugs.librdf.org/mantis/view.php?id=460
|
|
"--with-mysql=no",
|
|
"--with-bdb=#{HOMEBREW_PREFIX}"
|
|
system "make install"
|
|
end
|
|
end
|