pkg(rscript-4.1.1): Added R 4.1.1

This commit is contained in:
Brikaa 2021-09-12 14:38:57 +02:00
parent 8c3d4cb77f
commit 1250cf213a
7 changed files with 28 additions and 3 deletions

16
packages/rscript/4.1.1/build.sh vendored Executable file
View file

@ -0,0 +1,16 @@
#!/bin/bash
PREFIX=$(realpath $(dirname $0))
mkdir build
cd build
curl https://cloud.r-project.org/src/base/R-4/R-4.1.1.tar.gz -o R.tar.gz
tar xzf R.tar.gz --strip-components 1
./configure --prefix="$PREFIX" --with-x=no
make -j$(nproc)
make install -j$(nproc)
cd ../
rm -rf build