homebrew-core/Formula/redland.rb
Trevor Wennblom 8c623a9c95 redland 1.0.16
Closes Homebrew/homebrew#19390.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-04-23 20:21:52 -05:00

25 lines
681 B
Ruby

require 'formula'
class Redland < Formula
homepage 'http://librdf.org/'
url 'http://download.librdf.org/source/redland-1.0.16.tar.gz'
sha1 '0dc3d65bee6d580cae84ed261720b5b4e6b1f856'
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",
"--with-mysql=no",
"--with-bdb=#{HOMEBREW_PREFIX}"
system "make install"
end
end