27 lines
916 B
Ruby
27 lines
916 B
Ruby
|
class Goreleaser < Formula
|
||
|
desc "Deliver Go binaries as fast and easily as possible"
|
||
|
homepage "https://goreleaser.com/"
|
||
|
url "https://github.com/goreleaser/goreleaser/archive/v0.76.0.tar.gz"
|
||
|
sha256 "ef00153971db628e1a36a4a4677b5ffac5bfc73e2e5401ffe1f2c9c21f67f9a3"
|
||
|
|
||
|
depends_on "dep" => :build
|
||
|
depends_on "go" => :build
|
||
|
|
||
|
def install
|
||
|
ENV["GOPATH"] = buildpath
|
||
|
(buildpath/"src/github.com/goreleaser/goreleaser").install buildpath.children
|
||
|
cd "src/github.com/goreleaser/goreleaser" do
|
||
|
system "dep", "ensure"
|
||
|
system "go", "build", "-ldflags", "-X main.version=#{version}", "-o",
|
||
|
bin/"goreleaser"
|
||
|
prefix.install_metafiles
|
||
|
end
|
||
|
end
|
||
|
|
||
|
test do
|
||
|
assert_match version.to_s, shell_output("#{bin}/goreleaser -v 2>&1")
|
||
|
assert_match "config created", shell_output("#{bin}/goreleaser init 2>&1")
|
||
|
assert_predicate testpath/".goreleaser.yml", :exist?
|
||
|
end
|
||
|
end
|