blob: 70d6cb7e8952feef4ec4b626f30123e829f7a808 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
require 'formula'
class Redland <Formula
url 'http://download.librdf.org/source/redland-1.0.10.tar.gz'
homepage 'http://librdf.org/'
md5 'bdbb9b8dc614fc09a14cd646079619e1'
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
|