Jason Champion writes:
> George,
>
> That looks pretty neat.
>
> Pardon my ignorance, but is there something I need to do in order to build?
> I checked out the code and didn't see anything in the README, or a prebuilt
> executable.
>
> I don't really know golang (know C++ and Python tho), so please forgive me
> if there's some dumb obvious thing that all go developers know to do...
Nice to hear it might be helpful.
I'll add some info to the README, but if you're in a hurry, it should
just build as a bog standard go application.
What platform are you working on? Would you trust a precompiled
binary?
Working from memory here, can't test run this at the moment, but...
Assuming you have go installed on your machine and that you set the
GOPATH environment variable to some directory where you'd like all of
your go stuff to go, you should just be able to
go get
https://github.com/hartzell/roster
cd $GOPATH/src/
github.com/hartzell/roster
go build
and you should end up with the roster executable.
I'll write up more (and test run it myself) after thanksgiving.
g.