An open API service indexing awesome lists of open source software.

https://github.com/agrueneberg/buildr

make instead of devtools
https://github.com/agrueneberg/buildr

devtools r

Last synced: 2 months ago
JSON representation

make instead of devtools

Awesome Lists containing this project

README

        

# buildR

Makefile-based build tools for R

## Usage

* Build package: `make build`
* Install package: `make install`
* Load package temporarily into an interactive R session: `make load`
* Check package: `make check`
* Test package with tinytest: `make test-tinytest`
* Test package with testthat: `make test-testthat`
* See Makefile for more features

The following directory structure is expected:

```
your_package/
├── Makefile
└── pkg
├── DESCRIPTION
├── ...
```