homebrew-core/Formula/grakn.rb
Ganeshwara Herawan Hananda 294de6d61f grakn 1.4.3 (#35580)
2018-12-31 14:06:05 +01:00

20 lines
610 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/v1.4.3/grakn-core-1.4.3.zip"
sha256 "da4e768b866eda5bd02fe1c3e39c93f178ca1296036631a84cf68d0fee1bbe15"
bottle :unneeded
depends_on :java => "1.8"
def install
libexec.install Dir["*"]
bin.install libexec/"grakn", libexec/"graql"
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