aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGabriele Carrettoni2011-07-21 08:18:33 -0700
committerAdam Vandenberg2011-07-21 08:20:55 -0700
commit49916f433fa7f0d26451e1db6d2a27c160d3cd5c (patch)
treef03685325dadd139f0c768b04fabeeab0283f509
parentbae6f09eab52d7f210b26b5a282a1156460eb905 (diff)
downloadhomebrew-49916f433fa7f0d26451e1db6d2a27c160d3cd5c.tar.bz2
go r58.1
Fixes compilation on Lion. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/go.rb12
1 files changed, 3 insertions, 9 deletions
diff --git a/Library/Formula/go.rb b/Library/Formula/go.rb
index 66042e438..33803d1c8 100644
--- a/Library/Formula/go.rb
+++ b/Library/Formula/go.rb
@@ -3,13 +3,13 @@ require 'hardware'
class Go < Formula
if ARGV.include? "--use-git"
- url 'https://github.com/tav/go.git', :tag => 'release.r57.2'
+ url 'https://github.com/tav/go.git', :tag => 'release.r58.1'
head 'https://github.com/tav/go.git'
else
- url 'http://go.googlecode.com/hg/', :revision => 'release.r57.2'
+ url 'http://go.googlecode.com/hg/', :revision => 'release.r58.1'
head 'http://go.googlecode.com/hg/'
end
- version 'r57.2'
+ version 'r58.1'
homepage 'http://golang.org'
skip_clean 'bin'
@@ -18,12 +18,6 @@ class Go < Formula
[["--use-git", "Use git mirror instead of official hg repository"]]
end
- def patches
- # Fix an egrep error; already present upstream.
- # Remove when r58 is tagged.
- DATA unless ARGV.build_head?
- end
-
def install
ENV.j1 # Building in parallel fails
prefix.install %w[src include test doc misc lib favicon.ico AUTHORS]