summaryrefslogtreecommitdiff
path: root/community/go
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-02-07 00:08:35 -0800
committerroot <root@rshg054.dnsready.net>2013-02-07 00:08:35 -0800
commit8e5a0a990a12a59cadb687cae22a1960fce1660b (patch)
tree3a0fe8ce858eb0c6350bd2bcfaf7673f3b490f73 /community/go
parenta110e74fe4a31aebb09e0da6e407af69ed996837 (diff)
Thu Feb 7 00:08:35 PST 2013
Diffstat (limited to 'community/go')
-rw-r--r--community/go/PKGBUILD23
1 files changed, 14 insertions, 9 deletions
diff --git a/community/go/PKGBUILD b/community/go/PKGBUILD
index 8954a068a..b874f8a2e 100644
--- a/community/go/PKGBUILD
+++ b/community/go/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 82502 2013-01-19 17:36:30Z arodseth $
+# $Id: PKGBUILD 83899 2013-02-06 13:13:38Z arodseth $
# Maintainer: Vesa Kaihlavirta <vegai@iki.fi>
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Rémy Oudompheng <remy@archlinux.org>
@@ -10,10 +10,10 @@
pkgname=go
pkgver=1.0.3
-pkgrel=5
+pkgrel=6
epoch=2
pkgdesc='Google Go compiler and tools'
-arch=('x86_64' 'i686' 'armv6h')
+arch=('x86_64' 'i686')
url='http://golang.org/'
license=('custom')
depends=('perl' 'gawk')
@@ -22,12 +22,12 @@ options=('!strip' '!emptydirs')
install=go.install
backup=('usr/lib/go/bin')
source=("http://go.googlecode.com/files/${pkgname}$pkgver.src.tar.gz"
- $pkgname.sh)
+ "$pkgname.sh")
sha256sums=('7fba3533d172f13629d3d8a79e57c620632b0bd075abe11d7698b338be0ae3df'
'a03db71d323ed2794123bb31b5c8ad5febd551c490b5c0b341052c8e5f0ba892')
build() {
- cd $srcdir/$pkgname
+ cd "$srcdir/$pkgname"
if [ "$CARCH" == 'x86_64' ]; then
export GOARCH=amd64
@@ -52,7 +52,7 @@ build() {
}
check() {
- cd $srcdir/$pkgname
+ cd "$srcdir/$pkgname"
if [ "$CARCH" == 'x86_64' ]; then
export GOARCH=amd64
@@ -62,15 +62,15 @@ check() {
export GOARCH=arm
fi
- export GOROOT=$srcdir/$pkgname
- export PATH=$srcdir/$pkgname/bin:$PATH
+ export GOROOT="$srcdir/$pkgname"
+ export PATH="$srcdir/$pkgname/bin:$PATH"
# TestSimpleMulticastListener will fail in standard chroot.
cd src && bash run.bash --no-rebuild || true
}
package() {
- cd $srcdir/$pkgname
+ cd "$srcdir/$pkgname"
install -Dm644 LICENSE \
$pkgdir/usr/share/licenses/go/LICENSE
@@ -106,8 +106,10 @@ package() {
# Remove object files from target src dir
find $pkgdir/usr/lib/go/src/ -type f -name '*.[ao]' -delete
+
# Fix for FS#32813
find $pkgdir -type f -name sql.go -exec chmod -x {} \;
+
# Remove all executable source files
find $pkgdir/usr/lib/go/src/pkg -type f -executable -delete
@@ -130,6 +132,9 @@ package() {
rm -f $pkgdir/usr/share/go/doc/articles/wiki/get.bin
install -Dm644 VERSION $pkgdir/usr/lib/go/VERSION
+
+ # Clean up
+ rm -r "$pkgdir/usr/bin/linux_arm"
}
# vim:set ts=2 sw=2 et: