Skip to content

Commit

Permalink
formula template added
Browse files Browse the repository at this point in the history
  • Loading branch information
munishchouhan committed Nov 16, 2023
1 parent 34fb923 commit 220bfb1
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions app/src/jreleaser/distributions/wave/brew/formula.rb.tpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Homebrew Formula for Wave-cli

class wave < Formula
desc "cli for wave"
homepage "https://github.com/seqeralabs/wave-cli"
url "https://github.com/seqeralabs/wave-cli/releases/download/v{{projectEffectiveVersion}}/wave-{{projectEffectiveVersion}}-macos-x86_64"
license "Apache-2.0"

depends_on macos: ">= :catalina"

def install
bin.install "wave"
end

test do
system "#{bin}/wave", "--version"
end
end

end

0 comments on commit 220bfb1

Please sign in to comment.