homebrew-core/Formula/go.rb

97 lines
2.9 KiB
Ruby
Raw Normal View History

2009-11-11 05:39:01 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Go < Formula
homepage 'http://golang.org'
head 'https://go.googlecode.com/hg/'
url 'https://go.googlecode.com/files/go1.2.src.tar.gz'
version '1.2'
sha1 '7dd2408d40471aeb30a9e0b502c6717b5bf383a5'
2013-12-02 02:08:43 +00:00
bottle do
sha1 '8545bca00ef68365f021acff29573a63cad79625' => :mavericks
sha1 'cd1bf484aba6a0ba04d75eb2d5e6eee2593631e8' => :mountain_lion
sha1 '18bb16cf44771e5065a017358853ad59c7f6a3ca' => :lion
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"
2013-09-28 08:04:20 +00:00
option 'without-cgo', "Build without cgo"
2009-11-11 05:39:01 +00:00
def install
# install the completion scripts
2013-05-03 18:03:31 +00:00
bash_completion.install 'misc/bash/go' => 'go-completion.bash'
zsh_completion.install 'misc/zsh/go' => 'go'
# host platform (darwin) must come last in the targets list
if build.include? 'cross-compile-all'
targets = [
['linux', ['386', 'amd64', 'arm']],
['freebsd', ['386', 'amd64']],
['netbsd', ['386', 'amd64']],
['openbsd', ['386', 'amd64']],
['windows', ['386', '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
2012-02-24 09:21:43 +00:00
# The version check is due to:
# http://codereview.appspot.com/5654068
2013-08-15 04:45:29 +00:00
(buildpath/'VERSION').write('default') if build.head?
2009-11-11 05:39:01 +00:00
cd 'src' do
targets.each do |os, archs|
2013-12-02 02:20:05 +00:00
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/*"]
end
2009-11-11 05:39:01 +00:00
2013-12-02 01:57:20 +00:00
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
2013-12-02 01:57:20 +00:00
`go vet` and `go doc` are now part of the go.tools sub repo:
http://golang.org/doc/go1.2#go_tools_godoc
2013-12-02 01:57:20 +00:00
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
EOS
end
2013-03-25 18:18:31 +00:00
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"
2013-06-09 02:26:21 +00:00
assert_equal "Hello World\n", `#{bin}/go run hello.go`
2009-11-11 05:39:01 +00:00
end
end