diff options
author | Teddy Wing | 2022-05-22 02:44:45 +0200 |
---|---|---|
committer | Teddy Wing | 2022-05-22 02:44:45 +0200 |
commit | 5733f1b8df6b7ea256e02e8468ea8b08bde6819f (patch) | |
tree | 402d579f2f0e456a82e39c786c934836926d6451 | |
parent | 5ad6ae0b340c31d602ccf6fd2f75f09e8493a895 (diff) | |
download | homebrew-formulae-5733f1b8df6b7ea256e02e8468ea8b08bde6819f.tar.bz2 |
wajir 0.0.1
-rw-r--r-- | HomebrewFormula/wajir.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/HomebrewFormula/wajir.rb b/HomebrewFormula/wajir.rb new file mode 100644 index 0000000..77c7c07 --- /dev/null +++ b/HomebrewFormula/wajir.rb @@ -0,0 +1,19 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. + +class Wajir < Formula + desc "Automatically watch Jira issues" + homepage "https://github.com/teddywing/wajir" + url "https://github.com/teddywing/wajir/releases/download/v0.0.1/wajir_0.0.1.tar.bz2" + sha256 "c6be5e638af4f75730850aa8ea1086c2e2acf90eaa8a15709a135665f36d3e08" + + depends_on "sbcl" + + def install + bin.mkpath + man1.mkpath + + system "make", "install", "PREFIX=#{prefix}" + end +end |