2019-01-27 16:37:32 -02:00
|
|
|
# This file was generated by GoReleaser. DO NOT EDIT.
|
2018-04-01 14:25:04 -03:00
|
|
|
class GithubEnterpriseUrl < Formula
|
2019-06-26 14:12:33 -03:00
|
|
|
desc "A run pipe test formula and FOO=foo_is_bar"
|
2017-12-17 20:14:41 -02:00
|
|
|
homepage "https://github.com/goreleaser"
|
|
|
|
version "1.0.1"
|
2019-07-20 14:27:25 -03:00
|
|
|
bottle :unneeded
|
2019-06-10 10:35:19 -03:00
|
|
|
|
|
|
|
if OS.mac?
|
|
|
|
url "http://github.example.org/test/test/releases/download/v1.0.1/bin.tar.gz"
|
|
|
|
sha256 "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
|
|
|
|
elsif OS.linux?
|
|
|
|
end
|
2018-04-03 21:13:17 -03:00
|
|
|
|
|
|
|
depends_on "zsh"
|
|
|
|
depends_on "bash"
|
2017-12-17 20:14:41 -02:00
|
|
|
|
|
|
|
conflicts_with "gtk+"
|
|
|
|
conflicts_with "qt"
|
|
|
|
|
|
|
|
def install
|
2019-06-26 14:12:33 -03:00
|
|
|
bin.install "github_enterprise_url"
|
2017-12-17 20:14:41 -02:00
|
|
|
end
|
|
|
|
|
2018-04-05 13:38:32 -07:00
|
|
|
def caveats; <<~EOS
|
2019-06-26 14:12:33 -03:00
|
|
|
don't do this github_enterprise_url
|
2018-03-28 16:14:27 +02:00
|
|
|
EOS
|
2017-12-17 20:14:41 -02:00
|
|
|
end
|
|
|
|
|
|
|
|
plist_options :startup => false
|
|
|
|
|
2018-02-06 10:08:20 -08:00
|
|
|
def plist; <<~EOS
|
2017-12-17 20:14:41 -02:00
|
|
|
<xml>whatever</xml>
|
2018-03-28 16:14:27 +02:00
|
|
|
EOS
|
2017-12-17 20:14:41 -02:00
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
system "true"
|
|
|
|
system "#{bin}/foo -h"
|
|
|
|
end
|
|
|
|
end
|