author | Alexander Rødseth
<xyproto@archlinux.org> 2012-03-31 19:02:34 UTC |
committer | Alexander Rødseth
<xyproto@archlinux.org> 2012-03-31 19:02:34 UTC |
parent | 800307b00ed04e3366e83201e138b325a900eee7 |
PKGBUILD | +5 | -3 |
go | +5 | -0 |
go.sh | +1 | -5 |
diff --git a/PKGBUILD b/PKGBUILD index 70c5b17..f475507 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -17,8 +17,10 @@ depends=('perl' 'ed' 'gawk') makedepends=('mercurial' 'inetutils') options=('!strip' '!emptydirs') install=$pkgname.install -source=($pkgname.sh) -sha256sums=('a5fef3d69abeea73d17189b0d9feafda8558463f532d9d134d7282366a8e671c') +source=("$pkgname" + "$pkgname.sh") +md5sums=('fb4d2508c44b3823e05ed360c2976322' + 'e7087d190fd519db3be5adb3a51194cc') build() { _hgroot="https://go.googlecode.com/hg/" @@ -92,7 +94,7 @@ package() { install $srcdir/go.sh $pkgdir/etc/profile.d/ mv "$pkgdir/usr/bin/go" "$pkgdir/usr/bin/go.elf" - install -Dm755 "$srcdir/go.sh" "$pkgdir/usr/bin/go" + install -Dm755 "$srcdir/go" "$pkgdir/usr/bin/go" } # vim:set ts=2 sw=2 et: diff --git a/go b/go new file mode 100644 index 0000000..c284ec4 --- /dev/null +++ b/go @@ -0,0 +1,5 @@ +#!/bin/sh +if [[ -z $GOROOT ]]; then + export GOROOT=/usr/lib/go +fi +/usr/bin/go.elf "$@" diff --git a/go.sh b/go.sh index c284ec4..8393dc8 100644 --- a/go.sh +++ b/go.sh @@ -1,5 +1 @@ -#!/bin/sh -if [[ -z $GOROOT ]]; then - export GOROOT=/usr/lib/go -fi -/usr/bin/go.elf "$@" +export GOROOT=/usr/lib/go