Repository: arrow Updated Branches: refs/heads/master 015b28492 -> 949249d9e
ARROW-893: Add GLib document to Web site Author: Kouhei Sutou <[email protected]> Closes #599 from kou/site-glib-doc and squashes the following commits: f85ad44 [Kouhei Sutou] Add GLib document to Web site Project: http://git-wip-us.apache.org/repos/asf/arrow/repo Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/949249d9 Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/949249d9 Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/949249d9 Branch: refs/heads/master Commit: 949249d9e85d2464a3f1c65b176b636d1cfbaf1a Parents: 015b284 Author: Kouhei Sutou <[email protected]> Authored: Tue Apr 25 17:29:41 2017 -0400 Committer: Wes McKinney <[email protected]> Committed: Tue Apr 25 17:29:41 2017 -0400 ---------------------------------------------------------------------- site/README.md | 21 ++++++++++++++++++++- site/_includes/header.html | 1 + 2 files changed, 21 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/arrow/blob/949249d9/site/README.md ---------------------------------------------------------------------- diff --git a/site/README.md b/site/README.md index 3f8da22..aeebaa1 100644 --- a/site/README.md +++ b/site/README.md @@ -82,4 +82,23 @@ python setup.py build_sphinx -s doc/source rsync -r doc/_build/html/ ../site/asf-site/docs/python/ ``` -Then add/commit/push from the site/asf-site git checkout. \ No newline at end of file +#### C (GLib) + +First, build Apache Arrow C++ and Apache Arrow GLib. + +``` +mkdir -p ../cpp/build +cd ../cpp/build +cmake .. -DCMAKE_BUILD_TYPE=debug +make +cd ../../c_glib +./autogen.sh +./configure \ + --with-arrow-cpp-build-dir=$PWD/../cpp/build \ + --with-arrow-cpp-build-type=debug \ + --enable-gtk-doc +LD_LIBRARY_PATH=$PWD/../cpp/build/debug make GTK_DOC_V_XREF=": " +rsync -r doc/reference/html/ ../site/asf-site/docs/c_glib/ +``` + +Then add/commit/push from the site/asf-site git checkout. http://git-wip-us.apache.org/repos/asf/arrow/blob/949249d9/site/_includes/header.html ---------------------------------------------------------------------- diff --git a/site/_includes/header.html b/site/_includes/header.html index 5963c22..3d61494 100644 --- a/site/_includes/header.html +++ b/site/_includes/header.html @@ -28,6 +28,7 @@ <li><a href="{{ site.baseurl }}/docs/cpp">C++</a></li> <li><a href="{{ site.baseurl }}/docs/java">Java</a></li> <li><a href="{{ site.baseurl }}/docs/python">Python</a></li> + <li><a href="{{ site.baseurl }}/docs/c_glib">C (GLib)</a></li> </ul> </li> <!-- <li><a href="{{ site.baseurl }}/blog">Blog</a></li> -->
