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
- Host: GitHub
- URL: https://github.com/agrueneberg/buildr
- Owner: agrueneberg
- Created: 2019-06-07T17:37:46.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-09-06T07:25:11.000Z (8 months ago)
- Last Synced: 2025-01-04T23:15:37.979Z (4 months ago)
- Topics: devtools, r
- Language: Makefile
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 featuresThe following directory structure is expected:
```
your_package/
├── Makefile
└── pkg
├── DESCRIPTION
├── ...
```