2012-11-22 18:49:32 +00:00
|
|
|
post_install() {
|
2013-12-02 15:18:29 +00:00
|
|
|
# Friendly message for new users
|
2014-01-27 17:32:44 +00:00
|
|
|
echo
|
2014-03-26 13:05:40 +00:00
|
|
|
echo 'The "liteide" package provides an IDE for editing and building Go projects.'
|
|
|
|
echo
|
2014-01-27 17:32:44 +00:00
|
|
|
echo 'Example use of the "go" tool:'
|
|
|
|
echo
|
|
|
|
echo ' mkdir ~/go'
|
|
|
|
echo ' export GOPATH=~/go'
|
|
|
|
echo ' export PATH=$PATH:~/go/bin'
|
|
|
|
echo ' go get code.google.com/p/go-tour/gotour'
|
|
|
|
echo
|
2014-08-27 18:54:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
post_upgrade() {
|
2014-12-12 01:48:23 +00:00
|
|
|
echo
|
|
|
|
echo 'Shell and editor configuration has been removed from the go'
|
|
|
|
echo 'package for the 1.4 release. For more information, see:'
|
|
|
|
echo 'https://github.com/golang/go/wiki/IDEsAndTextEditorPlugins'
|
|
|
|
echo
|
2012-11-22 18:49:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# vim:set ts=2 sw=2 et:
|