diff options
author | Vincent Ambo <tazjin@gmail.com> | 2017-05-18T18·33+0200 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2017-05-18T18·35+0200 |
commit | de4171da318ca3b14f9aa14277c2685344a3d0a0 (patch) | |
tree | 57d79fac71442830ae870f0098a47ca46cb4b973 | |
parent | f79b261079336cd36bc923e8cf7f35f7295820ce (diff) |
feat build: Add Homebrew binary formula
Adds a Homebrew formula that downloads and installs the 1.0.2 binary release. Users should be able to "tap" this formula from OS X, the README will be updated in a separate commit. This fixes #41
-rw-r--r-- | kontemplate.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/kontemplate.rb b/kontemplate.rb new file mode 100644 index 000000000000..0f0ec6424691 --- /dev/null +++ b/kontemplate.rb @@ -0,0 +1,13 @@ +# Homebrew binary formula for Kontemplate + +class Kontemplate < Formula + desc "Kontemplate - Extremely simple Kubernetes resource templates" + homepage "https://github.com/tazjin/kontemplate" + url "https://github.com/tazjin/kontemplate/releases/download/v1.0.2/kontemplate-1.0.2-f79b261-darwin-amd64.tar.gz" + sha256 "5a2db5467bc77e4379b5b98f35c9864010f7023ae01a25fb5cda1aede59e021c" + version "1.0.2-f79b261" + + def install + bin.install "kontemplate" + end +end |