homebrew-core/Formula/rasqal.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

23 lines
741 B
Ruby

class Rasqal < Formula
desc "RDF query library"
homepage "http://librdf.org/rasqal/"
url "http://download.librdf.org/source/rasqal-0.9.33.tar.gz"
sha256 "6924c9ac6570bd241a9669f83b467c728a322470bf34f4b2da4f69492ccfd97c"
bottle do
cellar :any
sha1 "8c0c46000f6722eeeb94ebe41c8faca108fd807d" => :yosemite
sha1 "d86ff8b2e52b8a09ce018a757b84c1b2b66fb2ee" => :mavericks
sha1 "14efc7d7f18b8b9697cdacb43000cfa478579405" => :mountain_lion
end
depends_on "pkg-config" => :build
depends_on "raptor"
def install
system "./configure", "--prefix=#{prefix}",
"--with-html-dir=#{share}/doc",
"--disable-dependency-tracking"
system "make", "install"
end
end