homebrew-core/Formula/grakn.rb
Rui Chen d10bc8cc71
grakn 1.5.8
Closes #43403.

Signed-off-by: Chongyu Zhu <i@lembacon.com>
2019-08-24 01:04:20 +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.8/grakn-core-all-mac-1.5.8.zip"
sha256 "855de96fc8ed33f9366b8448a449c836b9d91d290c802415cea3af76d802516f"
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