PKGBUILDs/community/go/go.install

11 lines
290 B
Plaintext
Raw Normal View History

2012-11-22 18:49:32 +00:00
post_install() {
2013-12-02 15:18:29 +00:00
# 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'
2012-11-22 18:49:32 +00:00
}
# vim:set ts=2 sw=2 et: