# HG changeset patch # User Hans-G?nter Theisgen # Date 1643115024 -3600 # Node ID aeb61b86398a0b7883addcf216fe7a6502b99036 # Parent 4ad45787855eaa70363fe360a7abb375bf0b8dc9 updated R (3.6.2 -> 4.1.2) diff -r 4ad45787855e -r aeb61b86398a R/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/R/description.txt Tue Jan 25 13:50:24 2022 +0100 @@ -0,0 +1,2 @@ +R is a free software environment for statistical computing and graphics. +It compiles and runs on a wide variety of UNIX platforms, Windows and MacOS. diff -r 4ad45787855e -r aeb61b86398a R/receipt --- a/R/receipt Tue Jan 25 09:41:30 2022 +0100 +++ b/R/receipt Tue Jan 25 13:50:24 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="R" -VERSION="3.6.2" +VERSION="4.1.2" CATEGORY="office" SHORT_DESC="Free software environment for statistical computing and graphics." MAINTAINER="pankso@slitaz.org" @@ -11,9 +11,9 @@ TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="https://cran.r-project.org/src/base/R-${VERSION%%.*}/$TARBALL" -DEPENDS="bzlib epdfview gcc-lib-math libgfortran libgomp liblzma - midori pcre readline" -BUILD_DEPENDS="bzip2-dev curl-dev gfortran liblzma-dev pcre-dev readline-dev" +DEPENDS="bzlib epdfview gcc-lib-math libgfortran libgomp liblzma + midori pcre2 readline" +BUILD_DEPENDS="bzip2-dev curl-dev gfortran liblzma-dev pcre2-dev readline-dev" current_version() { @@ -35,18 +35,16 @@ --enable-R-shlib \ $CONFIGURE_ARGS && make && - make DESTDIR=$install install + make install DESTDIR=$install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr + cook_copy_folders bin + cook_copy_folders lib - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib $fs/usr - - sed -i s'|bash|sh|' $fs/usr/bin/R - sed -i s'|bash|sh|' $fs/usr/lib/R/bin/R - sed -i s'|bash|sh|' $fs/usr/lib/R/bin/pager + sed -i s'|bash|sh|' $fs/usr/bin/R + sed -i s'|bash|sh|' $fs/usr/lib/R/bin/R + sed -i s'|bash|sh|' $fs/usr/lib/R/bin/pager }