d6d27d65af
Closes Homebrew/homebrew#8018. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
23 lines
647 B
Ruby
23 lines
647 B
Ruby
require 'formula'
|
|
|
|
class Redland < Formula
|
|
url 'http://download.librdf.org/source/redland-1.0.14.tar.gz'
|
|
homepage 'http://librdf.org/'
|
|
md5 '3400579d137da82c4175debf9f6d53ba'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'raptor'
|
|
depends_on 'rasqal'
|
|
depends_on 'berkeley-db' => :optional
|
|
|
|
fails_with_llvm
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--with-sqlite=yes",
|
|
"--with-mysql=no",
|
|
"--with-bdb=#{HOMEBREW_PREFIX}"
|
|
system "make install"
|
|
end
|
|
end
|