48bcf597db
Closes #39703. Signed-off-by: Jonathan Chang <jchang641@gmail.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.3/grakn-core-all-mac-1.5.3.zip"
|
|
sha256 "76ca7e8ebe53993e792c3799814cd9253f14f046fced7c66792ca2ef4474ed4f"
|
|
|
|
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
|