git » go-1.20.git » commit 1701b28

upgrade to 60.3, add makedep to inettool (so that more tests pass), most importantly: add CGO_ENABLED=0 to prevent net build against libc

author Vesa Kaihlavirta
2011-10-18 12:11:19 UTC
committer Vesa Kaihlavirta
2011-10-18 12:11:19 UTC
parent a4e2cd75c5c45d8d3669983719b80ed81bc51708

upgrade to 60.3, add makedep to inettool (so that more tests pass), most importantly: add CGO_ENABLED=0 to prevent net build against libc

PKGBUILD +3 -2

diff --git a/PKGBUILD b/PKGBUILD
index a2feaa4..14e008a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
 # Contributor: Christian Himpel <chressie at gmail dot com>
 
 pkgname=go
-pkgver=r60
+pkgver=r60.3
 pkgrel=1
 epoch=1
 pkgdesc='Google Go compiler and tools (release version)'
@@ -12,7 +12,7 @@ arch=('i686' 'x86_64')
 url="http://golang.org/"
 license=('custom')
 depends=('perl' 'ed')
-makedepends=('mercurial')
+makedepends=('mercurial' 'inetutils')
 options=('!strip')
 install=$pkgname.install
 source=($pkgname.sh)
@@ -44,6 +44,7 @@ build() {
   export GOOS=linux
   export GOBIN="$GOROOT/bin"
   export PATH="$GOBIN:$PATH"
+  export CGO_ENABLED=0 # disable building net against libc, not needed on arch linux(?)
 
   mkdir -p "$GOROOT/bin"
   cd "$GOROOT/src"