28 lines
531 B
Bash
28 lines
531 B
Bash
# Copyright 2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="An easy R package manager written in bash"
|
|
HOMEPAGE="https://ari-web.xyz/gh/cran"
|
|
SRC_URI="https://ari-web.xyz/gh/cran/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="ArAr2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
DEPEND="
|
|
>=dev-lang/R-4.0.5
|
|
>=app-shells/bash-5.1
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
BDEPEND=""
|
|
IUSE="+man"
|
|
|
|
DOCS=(README.md)
|
|
|
|
src_install() {
|
|
dobin cran
|
|
use man && (doman doc/cran.1 && einstalldocs)
|
|
}
|
|
|