Files
guru/dev-R/fs/fs-1.5.2.ebuild
Alessandro Barbieri f32ccea908 dev-R/fs: fix copyright
Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
2022-05-24 19:36:40 +02:00

43 lines
705 B
Bash

# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit R-packages
DESCRIPTION='Cross-Platform File System Operations Based on libuv'
HOMEPAGE="
https://cran.r-project.org/package=fs
https://fs.r-lib.org/
https://github.com/r-lib/fs
"
KEYWORDS="~amd64"
LICENSE='MIT'
DEPEND="
>=dev-lang/R-3.1
dev-libs/libuv
"
RDEPEND="${DEPEND}"
PATCHES=( "${FILESDIR}/${P}-system-libuv.patch" )
src_prepare() {
rm -r src/libuv-* || die
R-packages_src_prepare
}
R_SUGGESTS="
dev-R/covr
dev-R/crayon
dev-R/knitr
>=dev-R/pillar-1.0.0
dev-R/rmarkdown
dev-R/spelling
dev-R/testthat
>=dev-R/tibble-1.1.0
>=dev-R/vctrs-0.3.0
dev-R/withr
"