diff options
Diffstat (limited to 'system/rar/rar.SlackBuild')
-rw-r--r-- | system/rar/rar.SlackBuild | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/system/rar/rar.SlackBuild b/system/rar/rar.SlackBuild index a35cf92ccf2b..e84e0c1caf70 100644 --- a/system/rar/rar.SlackBuild +++ b/system/rar/rar.SlackBuild @@ -6,7 +6,7 @@ # Modifed for new rar version with x64 support by Ozan Türkyılmaz ozan.turkyilmaz@gmail.com PRGNAM=rar -VERSION=${VERSION:-4.0.b3} +VERSION=${VERSION:-4.0.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -43,7 +43,11 @@ cd $TMP tar xvf $CWD/${PRGNAM}linux-$x64FIX$VERSION.tar.gz cd $PRGNAM chown -R root:root . -chmod -R u+w,go+r-w,a-s . +find . \ + \( -perm 777 -o -perm 775 -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 {} \; mkdir -p $PKG/usr/bin install -m 0755 rar $PKG/usr/bin |