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/56048a54 Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/56048a54 Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/56048a54 Branch: refs/heads/master Commit: 56048a542466ea95b8feb80dfb586613352e5d6f Parents: d70fa60 Author: Marvin Humphrey <[email protected]> Authored: Tue Nov 4 17:13:55 2014 -0800 Committer: Marvin Humphrey <[email protected]> Committed: Sun Mar 15 18:05:43 2015 -0700 ---------------------------------------------------------------------- compiler/go/INSTALL | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/56048a54/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 +
