Add INSTALL doc for Go CFC bindings.
Project: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/repo Commit: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/commit/8e24d26e Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/8e24d26e Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/8e24d26e Branch: refs/heads/go_bindings_2 Commit: 8e24d26e7c95cd55813b512380848572eca9d10d Parents: d196ffd Author: Marvin Humphrey <[email protected]> Authored: Tue Nov 4 17:13:55 2014 -0800 Committer: Marvin Humphrey <[email protected]> Committed: Sat Nov 29 14:07:55 2014 -0800 ---------------------------------------------------------------------- compiler/go/INSTALL | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/8e24d26e/compiler/go/INSTALL ---------------------------------------------------------------------- diff --git a/compiler/go/INSTALL b/compiler/go/INSTALL new file mode 100644 index 0000000..3d44031 --- /dev/null +++ b/compiler/go/INSTALL @@ -0,0 +1,20 @@ +Apache Clownfish symbiotic object system -- CFC compiler Go bindings +-------------------------------------------------------------------- + +These are temporary installation instructions for developers working on the +Apache Clownfish Go (golang) bindings. + +Make sure you have your GOPATH set, then clone the Clownfish git repository. + + mkdir -p $GOPATH/src/git-wip-us.apache.org/repos/asf + cd $GOPATH/src/git-wip-us.apache.org/repos/asf + git clone https://git-wip-us.apache.org/repos/asf/lucy-clownfish.git lucy-clownfish.git + cd lucy-clownfish.git/compiler/go + +From the `compiler/go` directory within the checkout, run `build.go`: + + go run build.go + go run build.go test + go run build.go install + go run build.go clean +
