e2ca9caa3a
Closes Homebrew/homebrew#34250. Signed-off-by: Tim D. Smith <git@tim-smith.us>
111 lines
3.4 KiB
Ruby
111 lines
3.4 KiB
Ruby
require 'formula'
|
|
|
|
class Go < Formula
|
|
homepage 'http://golang.org'
|
|
head 'https://go.googlecode.com/hg/'
|
|
url 'https://storage.googleapis.com/golang/go1.3.3.src.tar.gz'
|
|
version '1.3.3'
|
|
sha1 'b54b7deb7b7afe9f5d9a3f5dd830c7dede35393a'
|
|
|
|
bottle do
|
|
sha1 "07bde6154b7966acda1b6f147393f2deadc1af3f" => :yosemite
|
|
sha1 "87aa4f7f76278ee21004d0f12f63e38a0b3ff3f2" => :mavericks
|
|
sha1 "1e5fe0df8f805c96f143568bad1de5e2bc6af82f" => :mountain_lion
|
|
sha1 "2aa465d9fb98833b80d8f2801153592c1d52bd1a" => :lion
|
|
end
|
|
|
|
devel do
|
|
url 'https://storage.googleapis.com/golang/go1.4rc1.src.tar.gz'
|
|
version '1.4rc1'
|
|
sha1 'ff8e7d78e85658251a36e45f944af70f226368ab'
|
|
end
|
|
|
|
option 'cross-compile-all', "Build the cross-compilers and runtime support for all supported platforms"
|
|
option 'cross-compile-common', "Build the cross-compilers and runtime support for darwin, linux and windows"
|
|
option 'without-cgo', "Build without cgo"
|
|
|
|
def install
|
|
unless build.devel?
|
|
# install the completion scripts
|
|
bash_completion.install 'misc/bash/go' => 'go-completion.bash'
|
|
zsh_completion.install 'misc/zsh/go' => '_go'
|
|
end
|
|
|
|
# host platform (darwin) must come last in the targets list
|
|
if build.include? 'cross-compile-all'
|
|
targets = [
|
|
['linux', ['386', 'amd64', 'arm']],
|
|
['freebsd', ['386', 'amd64', 'arm']],
|
|
['netbsd', ['386', 'amd64', 'arm']],
|
|
['openbsd', ['386', 'amd64']],
|
|
['windows', ['386', 'amd64']],
|
|
['dragonfly', ['386', 'amd64']],
|
|
['plan9', ['386', 'amd64']],
|
|
['solaris', ['amd64']],
|
|
['darwin', ['386', 'amd64']],
|
|
]
|
|
elsif build.include? 'cross-compile-common'
|
|
targets = [
|
|
['linux', ['386', 'amd64', 'arm']],
|
|
['windows', ['386', 'amd64']],
|
|
['darwin', ['386', 'amd64']],
|
|
]
|
|
else
|
|
targets = [['darwin', ['']]]
|
|
end
|
|
|
|
# The version check is due to:
|
|
# http://codereview.appspot.com/5654068
|
|
(buildpath/'VERSION').write('default') if build.head?
|
|
|
|
cd 'src' do
|
|
targets.each do |os, archs|
|
|
cgo_enabled = os == 'darwin' && build.with?('cgo') ? "1" : "0"
|
|
archs.each do |arch|
|
|
ENV['GOROOT_FINAL'] = libexec
|
|
ENV['GOOS'] = os
|
|
ENV['GOARCH'] = arch
|
|
ENV['CGO_ENABLED'] = cgo_enabled
|
|
system "./make.bash", "--no-clean"
|
|
end
|
|
end
|
|
end
|
|
|
|
(buildpath/'pkg/obj').rmtree
|
|
|
|
libexec.install Dir['*']
|
|
bin.install_symlink Dir["#{libexec}/bin/go*"]
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
As of go 1.2, a valid GOPATH is required to use the `go get` command:
|
|
http://golang.org/doc/code.html#GOPATH
|
|
|
|
`go vet` and `go doc` are now part of the go.tools sub repo:
|
|
http://golang.org/doc/go1.2#go_tools_godoc
|
|
|
|
To get `go vet` and `go doc` run:
|
|
go get code.google.com/p/go.tools/cmd/godoc
|
|
go get code.google.com/p/go.tools/cmd/vet
|
|
|
|
You may wish to add the GOROOT-based install location to your PATH:
|
|
export PATH=$PATH:#{opt_libexec}/bin
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
(testpath/'hello.go').write <<-EOS.undent
|
|
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
fmt.Println("Hello World")
|
|
}
|
|
EOS
|
|
# Run go fmt check for no errors then run the program.
|
|
# This is a a bare minimum of go working as it uses fmt, build, and run.
|
|
system "#{bin}/go", "fmt", "hello.go"
|
|
assert_equal "Hello World\n", `#{bin}/go run hello.go`
|
|
end
|
|
end
|