mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-08 03:31:59 +02:00
d6306059d2
* fix: brew style closes #3236 Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com> * fix: more fixes Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com> * fix: more fixes Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>
89 lines
2.1 KiB
Plaintext
89 lines
2.1 KiB
Plaintext
# typed: false
|
|
# frozen_string_literal: true
|
|
|
|
# This file was generated by GoReleaser. DO NOT EDIT.
|
|
class Test < Formula
|
|
desc "Some desc"
|
|
homepage "https://google.com"
|
|
version "0.1.3"
|
|
license "MIT"
|
|
|
|
depends_on "gtk+"
|
|
|
|
on_macos do
|
|
if Hardware::CPU.intel?
|
|
url "https://github.com/caarlos0/test/releases/download/v0.1.3/test_Darwin_x86_64.tar.gz"
|
|
sha256 "1633f61598ab0791e213135923624eb342196b3494909c91899bcd0560f84c68"
|
|
|
|
def install
|
|
bin.install "test"
|
|
end
|
|
end
|
|
if Hardware::CPU.arm?
|
|
url "https://github.com/caarlos0/test/releases/download/v0.1.3/test_Darwin_arm64.tar.gz"
|
|
sha256 "1df5fdc2bad4ed4c28fbdc77b6c542988c0dc0e2ae34e0dc912bbb1c66646c58"
|
|
|
|
def install
|
|
bin.install "test"
|
|
end
|
|
end
|
|
end
|
|
|
|
on_linux do
|
|
if Hardware::CPU.intel?
|
|
url "https://github.com/caarlos0/test/releases/download/v0.1.3/test_Linux_x86_64.tar.gz"
|
|
sha256 "1633f61598ab0791e213135923624eb342196b3494909c91899bcd0560f84c67"
|
|
|
|
def install
|
|
bin.install "test"
|
|
end
|
|
end
|
|
if Hardware::CPU.arm? && !Hardware::CPU.is_64_bit?
|
|
url "https://github.com/caarlos0/test/releases/download/v0.1.3/test_Arm6.tar.gz"
|
|
sha256 "1633f61598ab0791e213135923624eb342196b3494909c91899bcd0560f84c67"
|
|
|
|
def install
|
|
bin.install "test"
|
|
end
|
|
end
|
|
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
|
|
url "https://github.com/caarlos0/test/releases/download/v0.1.3/test_Arm64.tar.gz"
|
|
sha256 "1633f61598ab0791e213135923624eb342196b3494909c91899bcd0560f84c67"
|
|
|
|
def install
|
|
bin.install "test"
|
|
end
|
|
end
|
|
end
|
|
|
|
conflicts_with "svn"
|
|
|
|
devel do
|
|
url "https://github.com/caarlos0/test/releases/download/v0.1.3/test_Darwin_x86_64.tar.gz"
|
|
sha256 "1633f61598ab0791e213135923624eb342196b3494909c91899bcd0560f84c68"
|
|
end
|
|
|
|
def post_install
|
|
touch "/tmp/foo"
|
|
system "echo", "done"
|
|
end
|
|
|
|
def caveats
|
|
<<~EOS
|
|
Here are some caveats
|
|
EOS
|
|
end
|
|
|
|
plist_options startup: false
|
|
|
|
def plist
|
|
<<~EOS
|
|
it works
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/foo", "-version"
|
|
end
|
|
end
|