diff options
| author | Adam Vandenberg | 2012-03-16 18:08:08 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-03-16 18:08:08 -0700 |
| commit | 232f21077f7655df71af15891c7027685b504201 (patch) | |
| tree | db36ee2ea4d77008d557aaf224feec93cc3ca551 /Library/Formula | |
| parent | ed3fc78cb143cc2ceff53ef8c6f51d85f01320a1 (diff) | |
| download | homebrew-232f21077f7655df71af15891c7027685b504201.tar.bz2 | |
Re-add redland
Closes #10985.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/redland.rb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Library/Formula/redland.rb b/Library/Formula/redland.rb new file mode 100644 index 000000000..43c0f0982 --- /dev/null +++ b/Library/Formula/redland.rb @@ -0,0 +1,23 @@ +require 'formula' + +class Redland < Formula + url 'http://download.librdf.org/source/redland-1.0.15.tar.gz' + homepage 'http://librdf.org/' + md5 'b0deb87f3c7d3237a3d587c1e0f2f266' + + depends_on 'pkg-config' => :build + depends_on 'raptor' + depends_on 'rasqal' + depends_on 'berkeley-db' => :optional + + fails_with_llvm :build => 2334 + + 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 |
