author | Alexander Rødseth
<xyproto@archlinux.org> 2014-03-03 17:04:15 UTC |
committer | Alexander Rødseth
<xyproto@archlinux.org> 2014-03-03 17:04:15 UTC |
parent | 87ef95cdffec8e079f0cfd845bd2e92a59205cb9 |
PKGBUILD | +4 | -18 |
diff --git a/PKGBUILD b/PKGBUILD index 655642f..9e00087 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -16,14 +16,13 @@ arch=('x86_64' 'i686') url='http://golang.org/' license=('custom') depends=('perl' 'gawk') -# Depends on itself when building, in order to include the go tools -makedepends=('inetutils' 'mercurial' 'go') +makedepends=('inetutils' 'mercurial') options=('!strip' 'staticlibs') optdepends=('liteide: IDE for editing and building projects written in Go' 'mercurial: VCS written in Python' 'git: VCS written in C') install="$pkgname.install" -source=("$pkgname-$pkgver::hg+https://code.google.com/p/$pkgname#branch=release-branch.$pkgname$pkgver") +source=("$pkgname-$pkgver::hg+https://code.google.com/p/$pkgname#branch=release-branch.$pkgname${pkgver/.1}") md5sums=('SKIP') build() { @@ -53,21 +52,8 @@ build() { done done - - # Build the go tools (like vet and cover) - # Working methods to do the same that does not rely on "go get" are warmly welcome, - # just create a feature request and include your solution. - - #export GOROOT="$srcdir/$pkgname-$pkgver" - #export PATH="$srcdir/$pkgname-$pkgver/bin:$PATH" - - if [ "$CARCH" == 'x86_64' ]; then - export GOARCH=amd64 - elif [ "$CARCH" == 'i686' ]; then - export GOARCH=386 - fi - - go get code.google.com/p/go.tools/cmd/... + # TODO: Find a way to install these tools as well: + #go get code.google.com/p/go.tools/cmd/... } check() {