homebrew-core/Formula/redland.rb
2019-10-17 07:44:56 +02:00

38 lines
1.5 KiB
Ruby

class Redland < Formula
desc "RDF Library"
homepage "http://librdf.org/"
url "http://download.librdf.org/source/redland-1.0.17.tar.gz"
sha256 "de1847f7b59021c16bdc72abb4d8e2d9187cd6124d69156f3326dd34ee043681"
revision 1
bottle do
sha256 "f30068d691ac2748619a288912235236e905f672b1f80a974e95425c5f102a10" => :catalina
sha256 "711bdaeff62854f878f02e8fab9782337ee87ebf7398757d7780eb3c8971310b" => :mojave
sha256 "407f9f1bd2a8682684660826fce445077c33fe3e7f1bfb05e7c0e265e2edacfe" => :high_sierra
sha256 "0ed03c897836946cbadf2e390bd25c79eeb6ad34ea1144ef69d8bf1dfbfaf2eb" => :sierra
sha256 "38eac3bae25aa65cbb7b688ecfaae91ab79c0c292e7505596ffc3b409bc8ca3b" => :el_capitan
sha256 "6047842b51137c968df4787bbfcf2080b4f32b73bb9d3412fa117ee9c1ff22d2" => :yosemite
sha256 "06d1c7c81a9803ad37cd40303987b90456fb565f4305965388bc8faff54c6db7" => :mavericks
end
depends_on "pkg-config" => :build
depends_on "raptor"
depends_on "rasqal"
depends_on "sqlite"
depends_on "unixodbc"
resource "bindings" do
url "http://download.librdf.org/source/redland-bindings-1.0.17.1.tar.gz"
sha256 "ff72b587ab55f09daf81799cb3f9d263708fad5df7a5458f0c28566a2563b7f5"
end
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-bdb=no",
"--with-mysql=no",
"--with-sqlite=yes"
system "make", "install"
end
end