Skip to content

Commit

Permalink
+ installation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
romainfrancois committed Aug 28, 2018
1 parent 28d8d80 commit ca9d7f0
Show file tree
Hide file tree
Showing 4 changed files with 72 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dev/release/rat_exclude_files.txt
Original file line number Diff line number Diff line change
Expand Up @@ -122,3 +122,5 @@ r/LICENSE.md
r/NAMESPACE
r/.Rbuildignore
r/arrow.Rproj
r/README.md
r/README.Rmd
1 change: 1 addition & 0 deletions r/.Rbuildignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
^.*\.Rproj$
^\.Rproj\.user$
^README\.Rmd$
40 changes: 40 additions & 0 deletions r/README.Rmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---
output: github_document
---

<!-- README.md is generated from README.Rmd. Please edit that file -->

```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# arrow

Low level bindings to the C++ Apache Arrow library

## Installation

First install a release build of the C++ bindings to arrow.

```shell
git clone https://github.com/apache/arrow.git
cd arrow/cpp && mkdir release && cd release

# It is important to statically link to boost libraries
cmake .. -DCMAKE_BUILD_TYPE=Release -DARROW_BOOST_USE_SHARED:BOOL=Off
make install
```

Then the R package:

```r
devtools::install_github("apache/arrow/r")
```

## Example

(not yet)
29 changes: 29 additions & 0 deletions r/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@

<!-- README.md is generated from README.Rmd. Please edit that file -->

# arrow

Low level bindings to the C++ Apache Arrow library

## Installation

First install a release build of the C++ bindings to arrow.

``` shell
git clone https://github.com/apache/arrow.git
cd arrow/cpp && mkdir release && cd release

# It is important to statically link to boost libraries
cmake .. -DCMAKE_BUILD_TYPE=Release -DARROW_BOOST_USE_SHARED:BOOL=Off
make install
```

Then the R package:

``` r
devtools::install_github("apache/arrow/r")
```

## Example

(not yet)

0 comments on commit ca9d7f0

Please sign in to comment.