diff options
author | melikamp <melikamp@melikamp.net> | 2014-03-11 08:01:21 +0700 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2014-03-12 12:42:50 -0500 |
commit | 32d8f3362ba09655b201670c1e3e67e2186aba41 (patch) | |
tree | dc4f3106d3c2e00e4fa64d4545c6f2c2af9063ca /academic/R/R.SlackBuild | |
parent | 574724696f8780450e27b16576e304d67513f1a0 (diff) | |
download | slackbuilds-32d8f3362ba09655b201670c1e3e67e2186aba41.tar.gz |
academic/R: Updated for version 3.0.3.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
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 5a80811c26..ab17d91d5a 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" \ |