This is an automated email from the ASF dual-hosted git repository.
wesm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/master by this push:
new 34c6ffe ARROW-4012: [Website] Add documentation how to install Apache
Arrow on MSYS2
34c6ffe is described below
commit 34c6ffe20c3682d88a4d997ba13c0d9cbde8939f
Author: Kouhei Sutou <[email protected]>
AuthorDate: Wed Mar 13 20:03:45 2019 -0500
ARROW-4012: [Website] Add documentation how to install Apache Arrow on MSYS2
Author: Kouhei Sutou <[email protected]>
Closes #3892 from kou/website-install-msys2 and squashes the following
commits:
93b4edfd0 <Kouhei Sutou> Add documentation how to install Apache Arrow on
MSYS2
---
site/install.md | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/site/install.md b/site/install.md
index 841dc74..5a3ff00 100644
--- a/site/install.md
+++ b/site/install.md
@@ -192,6 +192,23 @@ sudo yum install -y --enablerepo=epel parquet-devel # For
Apache Parquet C++
sudo yum install -y --enablerepo=epel parquet-glib-devel # For Parquet GLib (C)
```
+### C++ and GLib (C) Packages for MSYS2 (Unofficial)
+
+The official MSYS2 packages include [Apache Arrow C++ and GLib (C)
+package][16]. You can install the package by `pacman`.
+
+64bit version:
+
+```shell
+pacman -S --noconfirm mingw-w64-x86_64-arrow
+```
+
+32bit version:
+
+```shell
+pacman -S --noconfirm mingw-w64-i686-arrow
+```
+
[1]: {{site.data.versions['current'].mirrors}}
[2]: {{site.data.versions['current'].github-tag-link}}
[4]: {{site.data.versions['current'].java-artifacts}}
@@ -203,3 +220,4 @@ sudo yum install -y --enablerepo=epel parquet-glib-devel #
For Parquet GLib (C)
[13]: {{site.data.versions['current'].asc}}
[14]: {{site.data.versions['current'].sha256}}
[15]: {{site.data.versions['current'].sha512}}
+[16]: https://github.com/msys2/MINGW-packages/tree/master/mingw-w64-arrow