homebrew-core/Formula/go.rb

34 lines
689 B
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.1.src.tar.gz'
version '1.0.1'
sha1 'fc8a6d6725f7f2bf7c94685c5fd0880c9b7f67f6'
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'
2009-11-11 05:39:01 +00:00
def install
prefix.install Dir['*']
2012-02-24 09:21:43 +00:00
cd prefix do
2012-02-24 09:21:43 +00:00
# The version check is due to:
# http://codereview.appspot.com/5654068
(prefix/'VERSION').write 'default' if ARGV.build_head?
2009-11-11 05:39:01 +00:00
# Build only. Run `brew test go` to run distrib's tests.
cd 'src' do
system './make.bash'
end
end
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