homebrew-core/Formula/redland.rb

23 lines
628 B
Ruby
Raw Normal View History

require 'formula'
class Redland <Formula
url 'http://download.librdf.org/source/redland-1.0.12.tar.gz'
2009-12-23 21:51:32 +00:00
homepage 'http://librdf.org/'
md5 '40f37a5ad97fdfbf984f78dcea0c6115'
depends_on 'pkg-config' => :build
depends_on 'raptor'
depends_on 'rasqal'
depends_on 'berkeley-db' => :optional
def install
fails_with_llvm
system "./configure", "--prefix=#{prefix}",
"--disable-debug",
"--disable-dependency-tracking",
"--with-sqlite=yes",
"--with-bdb=#{HOMEBREW_PREFIX}"
system "make install"
end
end