2009-11-11 05:39:01 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Go < Formula
|
2012-02-21 06:04:21 +00:00
|
|
|
homepage 'http://golang.org'
|
2013-09-18 06:24:40 +00:00
|
|
|
head 'https://go.googlecode.com/hg/'
|
2014-09-26 02:12:14 +00:00
|
|
|
url 'https://storage.googleapis.com/golang/go1.3.2.src.tar.gz'
|
|
|
|
version '1.3.2'
|
|
|
|
sha1 '67d3a692588c259f9fe9dca5b80109e5b99271df'
|
2013-09-26 21:16:58 +00:00
|
|
|
|
2013-12-02 02:08:43 +00:00
|
|
|
bottle do
|
|
|
|
end
|
|
|
|
|
2012-06-01 08:14:44 +00:00
|
|
|
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"
|
2013-09-14 19:17:12 +00:00
|
|
|
|
2009-11-11 05:39:01 +00:00
|
|
|
def install
|
2012-12-03 04:16:46 +00:00
|
|
|
# install the completion scripts
|
2013-05-03 18:03:31 +00:00
|
|
|
bash_completion.install 'misc/bash/go' => 'go-completion.bash'
|
2014-09-12 01:25:00 +00:00
|
|
|
zsh_completion.install 'misc/zsh/go' => '_go'
|
2012-08-19 16:00:47 +00:00
|
|
|
|
2013-09-18 06:24:40 +00:00
|
|
|
# host platform (darwin) must come last in the targets list
|
2012-06-01 08:14:44 +00:00
|
|
|
if build.include? 'cross-compile-all'
|
|
|
|
targets = [
|
2013-09-18 06:24:40 +00:00
|
|
|
['linux', ['386', 'amd64', 'arm']],
|
2014-07-16 19:48:41 +00:00
|
|
|
['freebsd', ['386', 'amd64', 'arm']],
|
|
|
|
['netbsd', ['386', 'amd64', 'arm']],
|
2013-09-18 06:24:40 +00:00
|
|
|
['openbsd', ['386', 'amd64']],
|
|
|
|
['windows', ['386', 'amd64']],
|
2014-07-16 19:48:41 +00:00
|
|
|
['dragonfly', ['386', 'amd64']],
|
|
|
|
['plan9', ['386', 'amd64']],
|
|
|
|
['solaris', ['amd64']],
|
2013-09-18 06:24:40 +00:00
|
|
|
['darwin', ['386', 'amd64']],
|
2012-06-01 08:14:44 +00:00
|
|
|
]
|
|
|
|
elsif build.include? 'cross-compile-common'
|
|
|
|
targets = [
|
2013-09-18 06:24:40 +00:00
|
|
|
['linux', ['386', 'amd64', 'arm']],
|
|
|
|
['windows', ['386', 'amd64']],
|
|
|
|
['darwin', ['386', 'amd64']],
|
2012-06-01 08:14:44 +00:00
|
|
|
]
|
|
|
|
else
|
2013-09-18 06:24:40 +00:00
|
|
|
targets = [['darwin', ['']]]
|
2012-06-01 08:14:44 +00:00
|
|
|
end
|
2012-02-24 09:21:43 +00:00
|
|
|
|
2012-06-01 08:14:44 +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
|
|
|
|
2012-06-01 08:14:44 +00:00
|
|
|
cd 'src' do
|
2013-09-18 06:24:40 +00:00
|
|
|
targets.each do |os, archs|
|
2013-12-02 02:20:05 +00:00
|
|
|
cgo_enabled = os == 'darwin' && build.with?('cgo') ? "1" : "0"
|
2013-08-11 02:41:49 +00:00
|
|
|
archs.each do |arch|
|
2013-09-18 06:22:41 +00:00
|
|
|
ENV['GOROOT_FINAL'] = libexec
|
2013-08-11 02:41:49 +00:00
|
|
|
ENV['GOOS'] = os
|
|
|
|
ENV['GOARCH'] = arch
|
2013-09-18 06:24:40 +00:00
|
|
|
ENV['CGO_ENABLED'] = cgo_enabled
|
2013-08-11 02:41:49 +00:00
|
|
|
system "./make.bash", "--no-clean"
|
|
|
|
end
|
2012-02-21 06:04:21 +00:00
|
|
|
end
|
2012-04-01 10:17:27 +00:00
|
|
|
end
|
2012-05-29 19:08:46 +00:00
|
|
|
|
2013-08-15 05:48:01 +00:00
|
|
|
(buildpath/'pkg/obj').rmtree
|
2012-06-01 08:14:44 +00:00
|
|
|
|
2013-09-18 06:22:41 +00:00
|
|
|
libexec.install Dir['*']
|
2014-03-03 18:57:33 +00:00
|
|
|
bin.install_symlink Dir["#{libexec}/bin/go*"]
|
2012-04-01 10:17:27 +00:00
|
|
|
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-05-13 22:00:57 +00:00
|
|
|
|
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-05-13 22:00:57 +00:00
|
|
|
|
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
|
2013-12-29 21:33:01 +00:00
|
|
|
|
|
|
|
You may wish to add the GOROOT-based install location to your PATH:
|
2014-05-02 00:25:35 +00:00
|
|
|
export PATH=$PATH:#{opt_libexec}/bin
|
2013-12-01 22:27:49 +00:00
|
|
|
EOS
|
2013-05-13 22:00:57 +00:00
|
|
|
end
|
|
|
|
|
2013-03-25 18:18:31 +00:00
|
|
|
test do
|
2013-05-13 22:00:57 +00:00
|
|
|
(testpath/'hello.go').write <<-EOS.undent
|
|
|
|
package main
|
|
|
|
|
|
|
|
import "fmt"
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
fmt.Println("Hello World")
|
|
|
|
}
|
|
|
|
EOS
|
2013-10-19 02:58:10 +00:00
|
|
|
# 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
|