mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
117 lines
3.5 KiB
Bash
117 lines
3.5 KiB
Bash
# Maintainer: Morten Linderud <foxboron@archlinux.org>
|
|
# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
|
|
# Contributor: Alexander F. Rødseth <xyproto@archlinux.org>
|
|
# Contributor: Pierre Neidhardt <ambrevar@gmail.com>
|
|
# Contributor: Vesa Kaihlavirta <vegai@iki.fi>
|
|
# Contributor: Rémy Oudompheng <remy@archlinux.org>
|
|
# Contributor: Andres Perera <andres87p gmail>
|
|
# Contributor: Matthew Bauer <mjbauer95@gmail.com>
|
|
# Contributor: Christian Himpel <chressie@gmail.com>
|
|
# Contributor: Mike Rosset <mike.rosset@gmail.com>
|
|
# Contributor: Daniel YC Lin <dlin.tw@gmail.com>
|
|
# Contributor: John Luebs <jkluebs@gmail.com>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - added switches for our architectures
|
|
# - don't build stdlib with race detector (x86 only)
|
|
|
|
pkgbase=go
|
|
pkgname=(go go-pie)
|
|
epoch=2
|
|
pkgver=1.13.7
|
|
pkgrel=1
|
|
arch=(x86_64)
|
|
url='https://golang.org/'
|
|
license=(BSD)
|
|
makedepends=(git go)
|
|
source=(https://storage.googleapis.com/golang/go$pkgver.src.tar.gz
|
|
default-buildmode-pie.patch)
|
|
sha256sums=('e4ad42cc5f5c19521fbbbde3680995f2546110b5c6aa2b48c3754ff7af9b41f4'
|
|
'9d2f0d201d4e002d74f548cc82bd131139bab5dd62191004c71dd430fdc1666d')
|
|
|
|
export GOOS=linux
|
|
case "$CARCH" in
|
|
x86_64) export GOARCH=amd64 ;;
|
|
arm) export GOARCH=arm GOARM=5 ;;
|
|
armv6h) export GOARCH=arm GOARM=6 ;;
|
|
armv7h) export GOARCH=arm GOARM=7 ;;
|
|
aarch64) export GOARCH=arm64 ;;
|
|
esac
|
|
export GOROOT_FINAL=/usr/lib/go
|
|
export GOROOT_BOOTSTRAP=/usr/lib/go
|
|
|
|
prepare() {
|
|
cp -r $pkgbase $pkgbase-pie
|
|
|
|
cd $pkgbase-pie
|
|
patch -p1 -i "$srcdir/default-buildmode-pie.patch"
|
|
}
|
|
|
|
build() {
|
|
export GOPATH="$srcdir/"
|
|
|
|
for _pkgname in ${pkgname[@]}; do
|
|
export GOROOT="$srcdir/$_pkgname"
|
|
export GOBIN="$GOROOT/bin"
|
|
|
|
cd "$srcdir/$_pkgname/src"
|
|
./make.bash --no-clean -v
|
|
|
|
PATH="$GOBIN:$PATH" go install -v -buildmode=shared std
|
|
#PATH="$GOBIN:$PATH" go install -v -race std
|
|
done
|
|
}
|
|
|
|
check() {
|
|
# Run test suite only for unpatched Go as it expects non-PIE ldBuildmode
|
|
export GOROOT="$srcdir/$pkgbase"
|
|
export GOBIN="$GOROOT/bin"
|
|
export PATH="$srcdir/$pkgbase/bin:$PATH"
|
|
export GO_TEST_TIMEOUT_SCALE=2
|
|
|
|
cd $pkgbase/src
|
|
./run.bash --no-rebuild -v -v -v -k
|
|
}
|
|
|
|
_package() {
|
|
options=(!strip staticlibs)
|
|
cd "$srcdir/$1"
|
|
|
|
install -d "$pkgdir/usr/bin" "$pkgdir/usr/lib/go" "$pkgdir/usr/share/doc/go"
|
|
cp -a bin pkg src lib misc api test "$pkgdir/usr/lib/go"
|
|
cp -r doc/* "$pkgdir/usr/share/doc/go"
|
|
|
|
ln -sf /usr/lib/go/bin/go "$pkgdir/usr/bin/go"
|
|
ln -sf /usr/lib/go/bin/gofmt "$pkgdir/usr/bin/gofmt"
|
|
ln -sf /usr/share/doc/go "$pkgdir/usr/lib/go/doc"
|
|
|
|
install -Dm644 VERSION "$pkgdir/usr/lib/go/VERSION"
|
|
|
|
rm -rf "$pkgdir/usr/lib/go/pkg/bootstrap" "$pkgdir/usr/lib/go/pkg/tool/*/api"
|
|
|
|
# TODO: Figure out if really needed
|
|
rm -rf "$pkgdir"/usr/lib/go/pkg/obj/go-build/*
|
|
|
|
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$1/LICENSE"
|
|
}
|
|
|
|
package_go() {
|
|
pkgdesc='Core compiler tools for the Go programming language'
|
|
|
|
_package $pkgname
|
|
}
|
|
|
|
package_go-pie() {
|
|
pkgdesc='Core compiler tools for the Go programming language (with PIE enabled by default)'
|
|
provides=("go=$epoch:$pkgver-$pkgrel")
|
|
conflicts=(go)
|
|
|
|
_package $pkgname
|
|
|
|
# linux_amd64 is essentially the content of linux_amd64_shared, however there might
|
|
# be cases where the user could generate the _shared directory as it's missing in go-pie.
|
|
# Make sure it exists without rebuilding std with -buildmode=pie.
|
|
cp -a "$pkgdir/usr/lib/go/pkg/linux_${GOARCH}/" "$pkgdir/usr/lib/go/pkg/linux_${GOARCH}_shared"
|
|
}
|
|
|
|
# vim: ts=2 sw=2 et
|