mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-26 04:22:05 +02:00
b4f154d81f
* fix: improving URLs on linuxbrew Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * refactor: rename template fields Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix(tests): adapts brew test formulas and docs * Revert "fix(tests): adapts brew test formulas and docs" This reverts commit 51dd8cf6c71ebc262661d0fb9cd43946bf4cfdb2. * fix: template Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * docs: fixed example Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> Co-authored-by: Manuel Vogel <mavogel@posteo.de>
26 lines
918 B
Plaintext
26 lines
918 B
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
|
|
depends_on :linux
|
|
|
|
if OS.linux? && Hardware::CPU.intel?
|
|
url "https://github.com/caarlos0/test/releases/download/v0.1.3/test_Linux_x86_64.tar.gz"
|
|
sha256 "1633f61598ab0791e213135923624eb342196b3494909c91899bcd0560f84c67"
|
|
end
|
|
if OS.linux? && 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"
|
|
end
|
|
if OS.linux? && 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"
|
|
end
|
|
|
|
def install
|
|
bin.install "test"
|
|
end
|
|
end
|