1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-04-09 07:14:08 +02:00

33 lines
577 B
Plaintext
Raw Normal View History

2017-07-16 15:06:32 -03:00
class Test < Formula
desc "Some desc"
homepage "https://google.com"
url "https://github.com/caarlos0/test/releases/download/v0.1.3/test_Darwin_x86_64.tar.gz"
version "0.1.3"
sha256 "1633f61598ab0791e213135923624eb342196b3494909c91899bcd0560f84c68"
2018-04-03 21:13:17 -03:00
2017-07-16 15:06:32 -03:00
depends_on "gtk+"
2017-07-16 15:06:32 -03:00
conflicts_with "svn"
def install
custom install script
another install script
end
def caveats; <<~EOS
Here are some caveats
EOS
2017-07-16 15:06:32 -03:00
end
plist_options :startup => false
def plist; <<~EOS
2017-07-16 15:06:32 -03:00
it works
EOS
2017-07-16 15:06:32 -03:00
end
test do
system "#{bin}/foo -version"
end
end