mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-26 04:22:05 +02:00
d1e97a3fd8
* fix: tmp simplify * refactor: brew tests for mutiple archives per os * feat: adds keep latest goarm version and uses it for brew * chore: adapts golden brew test file for arm version * test: brew for multiple arm versions * refactor(test): brew for multiple arms * docs: updates homebrew * Revert "fix: tmp simplify" This reverts commit 946a2fa1b1168fec5c4612fc0f48d94082164f9e. * feat: adds goarm version to brew * fix: filter chain for one goarm version * chore: removes unused keep latest arm version filter * refactor: brew tests * fix: removes test for keep latest arm version * docs: updates homebrew for goarm property * chore: updaes err msg for brew multiple archives same os
57 lines
1.5 KiB
Plaintext
57 lines
1.5 KiB
Plaintext
# This file was generated by GoReleaser. DO NOT EDIT.
|
|
class Test < Formula
|
|
desc "Some desc"
|
|
homepage "https://google.com"
|
|
version "0.1.3"
|
|
bottle :unneeded
|
|
|
|
if OS.mac?
|
|
url "https://github.com/caarlos0/test/releases/download/v0.1.3/test_Darwin_x86_64.tar.gz"
|
|
sha256 "1633f61598ab0791e213135923624eb342196b3494909c91899bcd0560f84c68"
|
|
elsif OS.linux?
|
|
if Hardware::CPU.intel?
|
|
url "https://github.com/caarlos0/test/releases/download/v0.1.3/test_Linux_x86_64.tar.gz"
|
|
sha256 "1633f61598ab0791e213135923624eb342196b3494909c91899bcd0560f84c67"
|
|
end
|
|
if Hardware::CPU.arm?
|
|
if Hardware::CPU.is_64_bit?
|
|
url "https://github.com/caarlos0/test/releases/download/v0.1.3/test_Arm64.tar.gz"
|
|
sha256 "1633f61598ab0791e213135923624eb342196b3494909c91899bcd0560f84c67"
|
|
else
|
|
url "https://github.com/caarlos0/test/releases/download/v0.1.3/test_Arm6.tar.gz"
|
|
sha256 "1633f61598ab0791e213135923624eb342196b3494909c91899bcd0560f84c67"
|
|
end
|
|
end
|
|
end
|
|
|
|
devel do
|
|
url "https://github.com/caarlos0/test/releases/download/v0.1.3/test_Darwin_x86_64.tar.gz"
|
|
sha256 "1633f61598ab0791e213135923624eb342196b3494909c91899bcd0560f84c68"
|
|
end
|
|
|
|
depends_on "gtk+"
|
|
|
|
conflicts_with "svn"
|
|
|
|
def install
|
|
custom install script
|
|
another install script
|
|
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
|