author | Alexander Rødseth
<xyproto@archlinux.org> 2013-05-09 15:26:38 UTC |
committer | Alexander Rødseth
<xyproto@archlinux.org> 2013-05-09 15:26:38 UTC |
parent | 90a0b60bee21ad0f6b4a2ca1cb6fba66fa4f210c |
PKGBUILD | +12 | -15 |
diff --git a/PKGBUILD b/PKGBUILD index 0196474..ceaa62a 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -6,8 +6,11 @@ # Contributor: Christian Himpel <chressie@gmail.com> # Contributor: Mike Rosset <mike.rosset@gmail.com> # Contributor: Daniel YC Lin <dlin.tw@gmail.com> + +# TODO: Create split packages for the crosscompilation versions as well + pkgname=go -pkgver=1.1rc1 +pkgver=1.1rc2 pkgrel=1 epoch=2 pkgdesc='Google Go compiler and tools' @@ -22,13 +25,13 @@ backup=('usr/lib/go/bin') if [ "$CARCH" == 'x86_64' ]; then source=("http://go.googlecode.com/files/${pkgname}$pkgver.linux-amd64.tar.gz" "$pkgname.sh") - sha256sums=('fc76b716b031d8afba3f3e6bcaca410e8dbf5fb625db5def00fbaaaa960e108c' + sha256sums=('b0a1cad4c3e185ef94a0df36e9804a2afe18ed237f764fad25141560d910f31f' 'a03db71d323ed2794123bb31b5c8ad5febd551c490b5c0b341052c8e5f0ba892') else source=("http://go.googlecode.com/files/${pkgname}$pkgver.linux-386.tar.gz" "$pkgname.sh") - sha256sums=('b4eb8d9b55ae4a78c86213fa968755163ab3a8efa3f5c9f3a472b182b9d9a52e' - 'a03db71d323ed2794123bb31b5c8ad5febd551c490b5c0b341052c8e5f0ba892') + sha256sums=('d111b7a503a1b7bb0804128c014a8811411747e61346739c4866a8eef297b731' + 'a03db71d323ed2794123bb31b5c8ad5febd551c490b5c0b341052c8e5f0ba892') fi build() { @@ -41,12 +44,12 @@ build() { export GOARCH=arm bash make.bash - # Crosscompilation for other platforms too (including linux i686 and x86_64) - for os in linux; do # also possible: darwin freebsd windows + # Crosscompilation for various platforms (including linux) + for os in linux; do # darwin freebsd windows; do for arch in amd64 386; do - export GOOS=$os - export GOARCH=$arch - bash make.bash + export GOOS="$os" + export GOARCH="$arch" + bash make.bash --no-clean done done } @@ -54,14 +57,11 @@ build() { check() { cd "$srcdir/$pkgname" - # Only test for linux and the architecture we're on export GOOS=linux if [ "$CARCH" == 'x86_64' ]; then export GOARCH=amd64 elif [ "$CARCH" == 'i686' ]; then export GOARCH=386 - else - export GOARCH=arm fi export GOROOT="$srcdir/$pkgname" @@ -134,9 +134,6 @@ 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: