class Planr < Formula desc "An open-source, distrubed code grading tool for the classroom" homepage "https://www.git.flu0r1ne.net/planr.git/about/" url "https://git.flu0r1ne.net/planr.git/snapshot/planr-0.0.2.tar.xz" version "0.0.2" sha256 "15dded6078ef5197e7b1873f694c7ad06a6862bbe4f324b961b2aceb254e7dfd" license "GPL-2.0-only" depends_on "go" => :build depends_on "cmake" depends_on "make" def install system "make" bin.install "./planr" end test do # Do something more substantial once test configuration is more modular assert_equal "0.0.2", shell_output("#{bin}/planr version").strip end end