homebrew-core/Formula/grakn.rb
Rui Chen aa5d9bf456
grakn 1.5.6
Closes #41339.

Signed-off-by: Chongyu Zhu <i@lembacon.com>
2019-06-26 14:49:12 +08: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.6/grakn-core-all-mac-1.5.6.zip"
sha256 "bba92e7cd49abcf373e66301c2712bef70677560017d707e695c31d36631dd80"
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