mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
15 lines
380 B
Text
15 lines
380 B
Text
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'
|
|
echo ' export GOPATH=~/go'
|
|
echo ' export PATH=$PATH:~/go/bin'
|
|
echo ' go get code.google.com/p/go-tour/gotour'
|
|
echo
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|