author | Alexander Rødseth
<xyproto@archlinux.org> 2014-02-18 23:59:35 UTC |
committer | Alexander Rødseth
<xyproto@archlinux.org> 2014-02-18 23:59:35 UTC |
parent | 020ea3bfd32585cd9523b2cab4a97bf75cd22d7b |
PKGBUILD | +3 | -11 |
go.install | +13 | -0 |
diff --git a/PKGBUILD b/PKGBUILD index c7ecfa4..12772c7 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -18,7 +18,9 @@ license=('custom') depends=('perl' 'gawk') makedepends=('inetutils') options=('!strip' 'staticlibs') -optdepends=('liteide: IDE for editing and building projects written in Go') +optdepends=('liteide: IDE for editing and building projects written in Go' + 'mercurial: Version control system written in Python' + 'git: Version control system written in C') install="$pkgname.install" backup=('usr/lib/go/bin') @@ -147,16 +149,6 @@ package() { install -Dm644 VERSION "$pkgdir/usr/lib/go/VERSION" find "$pkgdir/usr/"{lib/go/pkg,bin} -type f -exec touch '{}' + - - # Adding useful go tools (FS#38860) - go get code.google.com/p/go.tools/cmd/benchcmp - go get code.google.com/p/go.tools/cmd/cover - go get code.google.com/p/go.tools/cmd/godoc - go get code.google.com/p/go.tools/cmd/goimports - go get code.google.com/p/go.tools/cmd/gotype - go get code.google.com/p/go.tools/cmd/html2article - go get code.google.com/p/go.tools/cmd/ssadump - go get code.google.com/p/go.tools/cmd/vet } # vim:set ts=2 sw=2 et: diff --git a/go.install b/go.install index 286aaf9..2f64826 100644 --- a/go.install +++ b/go.install @@ -8,6 +8,19 @@ post_install() { echo ' export PATH=$PATH:~/go/bin' echo ' go get code.google.com/p/go-tour/gotour' echo + echo 'For adding useful go tools:' + echo + echo ' go get code.google.com/p/go.tools/cmd/benchcmp' + echo ' go get code.google.com/p/go.tools/cmd/cover' + echo ' go get code.google.com/p/go.tools/cmd/godoc' + echo ' go get code.google.com/p/go.tools/cmd/goimports' + echo ' go get code.google.com/p/go.tools/cmd/gotype' + echo ' go get code.google.com/p/go.tools/cmd/html2article' + echo ' go get code.google.com/p/go.tools/cmd/ssadump' + echo ' go get code.google.com/p/go.tools/cmd/vet' + echo + echo '#go-nuts at irc.freenode.net may provide more answers.' + echo } # vim:set ts=2 sw=2 et: