git » go-1.20.git » commit 69c2768

Preparing for the next release, better check for ARM

author Alexander Rødseth
2013-01-19 17:35:44 UTC
committer Alexander Rødseth
2013-01-19 17:35:44 UTC
parent 794318f66bfd7df3fd09e883f73822c03980e69f

Preparing for the next release, better check for ARM

PKGBUILD +15 -9

diff --git a/PKGBUILD b/PKGBUILD
index 5770fa1..0952129 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -9,10 +9,10 @@
 
 pkgname=go
 pkgver=1.0.3
-pkgrel=4
+pkgrel=5
 epoch=2
 pkgdesc='Google Go compiler and tools'
-arch=('x86_64' 'i686')
+arch=('x86_64' 'i686' 'armv6h')
 url='http://golang.org/'
 license=('custom')
 depends=('perl' 'gawk')
@@ -30,18 +30,23 @@ build() {
 
   if [ "$CARCH" == 'x86_64' ]; then
     export GOARCH=amd64
-  fi
-  if [ "$CARCH" == 'i686' ]; then
+  elif [ "$CARCH" == 'i686' ]; then
     export GOARCH=386
+  else
+    export GOARCH=arm
   fi
-
   export GOROOT_FINAL=/usr/lib/go
   export GOOS=linux
+
   cd src
   bash make.bash
 
-  # Enable ARM crosscompilation
-  export GOARCH=arm
+  # Enable ARM crosscompilation for non-arm platforms
+  if [ "$CARCH" == 'x86_64' ]; then
+    export GOARCH=arm
+  elif [ "$CARCH" == 'i686' ]; then
+    export GOARCH=arm
+  fi
   bash make.bash
 }
 
@@ -50,9 +55,10 @@ check() {
 
   if [ "$CARCH" == 'x86_64' ]; then
     export GOARCH=amd64
-  fi
-  if [ "$CARCH" == 'i686' ]; then
+  elif [ "$CARCH" == 'i686' ]; then
     export GOARCH=386
+  else
+    export GOARCH=arm
   fi
 
   export GOROOT=$srcdir/$pkgname