diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2021-08-10 21:09:30 -0500 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2021-08-10 21:09:30 -0500 |
| commit | 5d249207125df4f8033a71031f0537697a76f93e (patch) | |
| tree | 879bd4c33de22d51f907538a8d4cac7e675a11c8 | |
README and planr tap
| -rw-r--r-- | Formula/planr.rb | 22 | ||||
| -rw-r--r-- | README.md | 4 |
2 files changed, 26 insertions, 0 deletions
diff --git a/Formula/planr.rb b/Formula/planr.rb new file mode 100644 index 0000000..521fdbf --- /dev/null +++ b/Formula/planr.rb @@ -0,0 +1,22 @@ +class Planr < Formula + desc "An open-source, distrubed code grading tool for the classroom" + homepage "https://www.git.furkistan.com/planr.git/about/" + url "https://git.furkistan.com/planr.git/snapshot/planr-0.0.1.tar.xz" + version "0.0.1" + sha256 "b10830960481a78d48ec8bf979cd8f386dd50c378df04fbfbd78c88240ac4af7" + 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.1", shell_output("#{bin}/planr version").strip + end +end diff --git a/README.md b/README.md new file mode 100644 index 0000000..d74e023 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +PlanR Tap +========= + +Provides [`planr`](https://www.git.furkistan.com/planr.git/) formula for [Homebrew](https://brew.sh) |
