homebrew-core/Formula/blazegraph.rb

45 lines
1.2 KiB
Ruby

class Blazegraph < Formula
desc "Graph database supporting RDF data model, Sesame, and Blueprint APIs"
homepage "https://www.blazegraph.com/"
url "https://github.com/blazegraph/database/releases/download/BLAZEGRAPH_RELEASE_2_1_5/blazegraph.jar"
version "2.1.5"
sha256 "fbaeae7e1b3af71f57cfc4da58b9c52a9ae40502d431c76bafa5d5570d737610"
livecheck do
url :stable
regex(/^BLAZEGRAPH(?:_RELEASE)?[._-]v?(\d+(?:[._]\d+)+)$/i)
end
bottle do
rebuild 1
sha256 cellar: :any_skip_relocation, all: "3f006e1ce3a63d62b14b3274a11417ac02fa7585e5036bcba32fe4264deda8e3"
end
# Dependencies can be lifted in the upcoming release, > 2.1.5
depends_on "openjdk@8"
def install
libexec.install "blazegraph.jar"
bin.write_jar_script libexec/"blazegraph.jar", "blazegraph", java_version: "1.8"
end
plist_options startup: "true"
service do
run opt_bin/"blazegraph"
working_dir opt_prefix
end
test do
ENV.prepend "_JAVA_OPTIONS", "-Djava.io.tmpdir=#{testpath}"
server = fork do
exec bin/"blazegraph"
end
sleep 5
Process.kill("TERM", server)
assert_predicate testpath/"blazegraph.jnl", :exist?
assert_predicate testpath/"rules.log", :exist?
end
end