PKGBUILDs/community/go/go.install
2013-12-02 15:18:29 +00:00

11 lines
290 B
Plaintext

post_install() {
# 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: