diff options
Diffstat (limited to 'academic/R/R.SlackBuild')
-rw-r--r-- | academic/R/R.SlackBuild | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/academic/R/R.SlackBuild b/academic/R/R.SlackBuild index 5a80811c26b2..ab17d91d5a5f 100644 --- a/academic/R/R.SlackBuild +++ b/academic/R/R.SlackBuild @@ -6,7 +6,8 @@ # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or -# (at your option) any later version. +# (at your option) any later version, with the following exception: +# the text of the GPL license may be omitted. # This program is distributed in the hope that it will be useful, but # without any warranty; without even the implied warranty of @@ -21,7 +22,7 @@ # not, see <http://www.gnu.org/licenses/>. PRGNAM=R -VERSION=3.0.2 +VERSION=${VERSION:-3.0.3} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -73,10 +74,10 @@ tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; CFLAG="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ |