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.2/grakn-core-1.4.2.zip" sha256 "689e29b30148e76efb7573a372fd97e1885aca8488c5f52e6bcacf84806df417" 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