d10bc8cc71
Closes #43403. Signed-off-by: Chongyu Zhu <i@lembacon.com>
20 lines
600 B
Ruby
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
|