added brew formula

This commit is contained in:
Kasper Juul Hermansen 2022-10-21 01:27:57 +02:00
parent 7fed0deb28
commit 054c165954
Signed by: kjuulh
GPG Key ID: 57B6E1465221F912
2 changed files with 17 additions and 0 deletions

1
HomebrewFormula Symbolic link
View File

@ -0,0 +1 @@
pkg/brew/

16
pkg/brew/kignore-bin.rb Normal file
View File

@ -0,0 +1,16 @@
class Kignore < Formula
desc "Easily add items to .gitignore and cleanup afterwards"
homepage "https://github.com/kjuulh/gitignore"
version '0.1.1'
license "MIT"
if OS.mac?
url "https://github.com/kjuulh/kignore/releases/download/#{version}/kignore-#{version}-x86_64-apple-darwin.tar.gz"
sha256 ""
end
def install
bin.install "kignore"
end
end