homebrew-core/Formula/grakn.rb
Rui Chen ba3999c8e3 grakn 1.5.5
Closes #41103.

Signed-off-by: FX Coudert <fxcoudert@gmail.com>
2019-06-19 08:25:39 +02:00

20 lines
600 B
Ruby

class Grakn < Formula
desc "The distributed hyper-relational database for knowledge engineering"
homepage "https://grakn.ai"
url "https://github.com/graknlabs/grakn/releases/download/1.5.5/grakn-core-all-mac-1.5.5.zip"
sha256 "155f762140babd722c0918eac4a2bc4ea3afbf1dbfaef33cebb8254810eb3db1"
bottle :unneeded
depends_on :java => "1.8"
def install
libexec.install Dir["*"]
bin.install libexec/"grakn"
bin.env_script_all_files(libexec, Language::Java.java_home_env("1.8"))
end
test do
assert_match /RUNNING/i, shell_output("#{bin}/grakn server status")
end
end