author | Alexander Rødseth
<xyproto@archlinux.org> 2013-12-02 13:37:17 UTC |
committer | Alexander Rødseth
<xyproto@archlinux.org> 2013-12-02 13:37:17 UTC |
parent | c1577e59ce5162aee01eaa9f7b8671fd067b3dc4 |
PKGBUILD | +5 | -3 |
go.install | +6 | -6 |
go.sh | +0 | -1 |
diff --git a/PKGBUILD b/PKGBUILD index 8d5a6ce..5d8d855 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -8,7 +8,7 @@ # Contributor: Daniel YC Lin <dlin.tw@gmail.com> pkgname=go -pkgver=1.2rc5 +pkgver=1.2 pkgrel=1 epoch=2 pkgdesc='Compiler and tools for the Go programming language from Google' @@ -18,18 +18,19 @@ license=('custom') depends=('perl' 'gawk') makedepends=('inetutils') options=('!strip' 'staticlibs') +optdepends=('liteide: IDE for editing and building projects written in Go') install="$pkgname.install" 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=('39579e52e312030d82c123fbb6441a6154be348b93c6b4d947d39802c30a5d9e' + sha256sums=('1252ca0aa0a96d53c0592fbc4ea9c9ff5c6b588169c92e08d06da9d89d9d91f2' 'b6209904c88bde96efcac846c267e308e4dc39c8a45f2690204c2175de4b9b0a') else source=("http://go.googlecode.com/files/${pkgname}$pkgver.linux-386.tar.gz" "$pkgname.sh") - sha256sums=('ed60ebcb519c040957b3a3c0535c8303e2c7aa456d346476d79c7228eda9bfa1' + sha256sums=('3f51aacc7af60c520fe1071f3cb1d9ceee5db0e8fdfb7168a73e12fd7603e651' 'b6209904c88bde96efcac846c267e308e4dc39c8a45f2690204c2175de4b9b0a') fi @@ -49,6 +50,7 @@ build() { # Enable ARM crosscompilation for linux export GOOS=linux export GOARCH=arm + bash make.bash # Crosscompilation for various platforms (including linux) diff --git a/go.install b/go.install index 03af5fe..e0610f3 100644 --- a/go.install +++ b/go.install @@ -1,10 +1,10 @@ post_install() { - # Friendly message to the user - echo "Example use of the \"go\" tool as a user:" - echo " mkdir ~/go" - echo " export GOPATH=~/go" - echo " export PATH=\$PATH:\$GOPATH/bin" - echo " go get website.com/user/module" + # Friendly message for new users + echo "Example use of the \"go\" tool:" + echo ' mkdir ~/mygoproject' + echo ' export GOPATH=~/mygoproject' + echo ' export PATH=\$PATH:\$GOPATH/bin' + echo ' go get github.com/codegangsta/martini' } # vim:set ts=2 sw=2 et: diff --git a/go.sh b/go.sh index 51c6e76..8393dc8 100644 --- a/go.sh +++ b/go.sh @@ -1,2 +1 @@ -export GOPATH=/usr/lib/go/site export GOROOT=/usr/lib/go