diff --git a/community/go/PKGBUILD b/community/go/PKGBUILD index b4e14e4af..9c49c6860 100644 --- a/community/go/PKGBUILD +++ b/community/go/PKGBUILD @@ -17,18 +17,17 @@ pkgname=go epoch=2 pkgver=1.2.1 -pkgrel=3 +pkgrel=4 pkgdesc='Compiler and tools for the Go programming language from Google' url='http://golang.org/' license=('custom') depends=('perl' 'gawk') 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' - 'bzr: decentralized revision control system' - 'svn: concurrent version control system') +optdepends=('mercurial: for fetching sources from mercurial repositories' + 'git: for fetching sources from git repositories' + 'bzr: for fetching sources from bazaar repositories' + 'svn: for fetching sources from subversion repositories') install="$pkgname.install" source=("$pkgname-$pkgver::hg+https://code.google.com/p/$pkgname#branch=release-branch.$pkgname${pkgver/.1}") md5sums=('SKIP') diff --git a/community/go/go.install b/community/go/go.install index 286aaf9dd..d8a228e08 100644 --- a/community/go/go.install +++ b/community/go/go.install @@ -1,6 +1,8 @@ post_install() { # Friendly message for new users echo + echo 'The "liteide" package provides an IDE for editing and building Go projects.' + echo echo 'Example use of the "go" tool:' echo echo ' mkdir ~/go'