homebrew-core/Formula/go.rb

84 lines
2.6 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'
url 'http://go.googlecode.com/files/go1.0.3.src.tar.gz'
version '1.0.3'
sha1 '1a67293c10d6c06c633c078a7ca67e98c8b58471'
2012-04-17 02:10:52 +00:00
head 'http://go.googlecode.com/hg/'
2009-11-11 05:39:01 +00:00
skip_clean 'bin'
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"
2009-11-11 05:39:01 +00:00
def install
# install the completion script
(prefix/'etc/bash_completion.d').install 'misc/bash/go' => 'go-completion.bash'
if build.include? 'cross-compile-all'
targets = [
['darwin', ['386', 'amd64'], { :cgo => true }],
['linux', ['386', 'amd64', 'arm'], { :cgo => false }],
['freebsd', ['386', 'amd64'], { :cgo => false }],
# image/jpeg fails to build
#['netbsd', ['386', 'amd64'], { :cgo => false }],
['openbsd', ['386', 'amd64'], { :cgo => false }],
['plan9', ['386'], { :cgo => false }],
['windows', ['386', 'amd64'], { :cgo => false }],
]
elsif build.include? 'cross-compile-common'
targets = [
['darwin', ['386', 'amd64'], { :cgo => true }],
['linux', ['386', 'amd64', 'arm'], { :cgo => false }],
['windows', ['386', 'amd64'], { :cgo => false }],
]
else
targets = [
['darwin', [''], { :cgo => true }]
]
end
2012-02-24 09:21:43 +00:00
# The version check is due to:
# http://codereview.appspot.com/5654068
'VERSION'.write 'default' if build.head?
2009-11-11 05:39:01 +00:00
cd 'src' do
# Build only. Run `brew test go` to run distrib's tests.
targets.each do |(os, archs, opts)|
archs.each do |arch|
ENV['GOROOT_FINAL'] = prefix
ENV['GOOS'] = os
ENV['GOARCH'] = arch
ENV['CGO_ENABLED'] = opts[:cgo] ? "1" : "0"
allow_fail = opts[:allow_fail] ? "|| true" : ""
system "./make.bash --no-clean #{allow_fail}"
end
end
end
# cleanup ENV
ENV.delete('GOROOT_FINAL')
ENV.delete('GOOS')
ENV.delete('GOARCH')
ENV.delete('CGO_ENABLED')
Pathname.new('pkg/obj').rmtree
# Don't install header files; they aren't necessary and can
# cause problems with other builds. See:
# http://trac.macports.org/ticket/30203
# http://code.google.com/p/go/issues/detail?id=2407
prefix.install(Dir['*'] - ['include'])
end
2009-11-11 05:39:01 +00:00
def test
cd "#{prefix}/src" do
system './run.bash --no-rebuild'
end
2009-11-11 05:39:01 +00:00
end
end