diff options
author | Johannes Schoepfer <slackbuilds@schoepfer.info> | 2023-06-16 18:49:02 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-06-16 18:49:02 +0700 |
commit | c0f0ab33740d5a0839c682873b960f7b32382b14 (patch) | |
tree | b56a5c61aa7d5cef70cff40cc844ca076a71e100 /network/webalizer/webalizer.SlackBuild | |
parent | cd981e58cb1e8caa39dab218caccd1952cf5b2e6 (diff) |
network/webalizer: new maintainer.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/webalizer/webalizer.SlackBuild')
-rw-r--r-- | network/webalizer/webalizer.SlackBuild | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/network/webalizer/webalizer.SlackBuild b/network/webalizer/webalizer.SlackBuild index cdc1ce368933..e6d3e5469f88 100644 --- a/network/webalizer/webalizer.SlackBuild +++ b/network/webalizer/webalizer.SlackBuild @@ -2,7 +2,8 @@ # Slackware build script for webalizer -# Copyright 2010, Steven King <kingrst@gmail.com> +# Copyright 2010, Steven King +# Copyright 2023 Johannes Schoepfer, Germany # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -80,9 +81,9 @@ cd $PRGNAM-$SRC_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 \ + -exec chmod 755 {} + -o \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \+ + -exec chmod 644 {} + patch -p1 < $CWD/gcc10.patch @@ -103,7 +104,7 @@ make install MANDIR=/usr/man/man1 DESTDIR=$PKG find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true -find $PKG/usr/man -type f -exec gzip -9 {} \+ +find $PKG/usr/man -type f -exec gzip -9 {} + for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION |