diff options
author | Isaac Yu <isaacyu1@isaacyu1.com> | 2020-02-15 07:56:15 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-02-15 07:56:15 +0700 |
commit | d6efd9490960f32ed01bf8d88265acc010832d9b (patch) | |
tree | 47c7f6b85c17381c9de1ca374926780e9a8324ee /network | |
parent | 680c21bbd6d45e5dd3d6f5102603b04ecbbe5796 (diff) | |
download | slackbuilds-d6efd9490960f32ed01bf8d88265acc010832d9b.tar.gz |
network/sfeed: Fix SlackBuild.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network')
-rw-r--r-- | network/sfeed/sfeed.SlackBuild | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/network/sfeed/sfeed.SlackBuild b/network/sfeed/sfeed.SlackBuild index f1a2b695b7..17082dd8f0 100644 --- a/network/sfeed/sfeed.SlackBuild +++ b/network/sfeed/sfeed.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for sfeed -# Copyright 2019 Isaac Yu <isaacyu1@isaacyu1.com> +# Copyright 2019-2020 Isaac Yu <isaacyu1@isaacyu1.com> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -24,7 +24,7 @@ PRGNAM=sfeed VERSION=${VERSION:-0.9.15} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -63,7 +63,8 @@ rm -rf $PRGNAM-$VERSION 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 \ +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 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; |