diff options
author | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2015-11-28 00:01:18 +0100 |
---|---|---|
committer | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2015-11-28 00:01:18 +0100 |
commit | 2ddddac4d6f400f00d5f7f8aa489dbb593a95202 (patch) | |
tree | e9f096c34502828c27624a7a03beed8417618ac2 /slackbuild | |
parent | fa6c3fa34d76707b5c80726674978b2d8a2c78b6 (diff) | |
download | sbotools-2ddddac4d6f400f00d5f7f8aa489dbb593a95202.tar.xz |
Update slackbuild script to how SBo seems to want it
Diffstat (limited to 'slackbuild')
-rwxr-xr-x | slackbuild/sbotools/sbotools.SlackBuild | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/slackbuild/sbotools/sbotools.SlackBuild b/slackbuild/sbotools/sbotools.SlackBuild index 1b46acf..abad773 100755 --- a/slackbuild/sbotools/sbotools.SlackBuild +++ b/slackbuild/sbotools/sbotools.SlackBuild @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # # Slackware build script for <sbotools> # Written by Jacob Pipkin <j@dawnrazor.net> @@ -25,11 +25,11 @@ rm -rf $SRCNAM-$VERSION tar xvf $CWD/$SRCNAM-$VERSION.tar.gz cd $SRCNAM-$VERSION chown -R root:root . -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 {} \; +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 {} \; # we set INSTALLMAN3DIR=none to elide the Sort::Versions.3 man page so that we # don't clobber one from perl-Sort-Versions or Sort::Versions. @@ -66,10 +66,7 @@ find $PKG -name perllocal.pod -o -name ".packlist" -o -name "*.bs" | xargs rm -f find $PKG -depth -type d -empty -delete || true mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/SBO-Lib -cp -a \ - SBO-Lib/README \ - SBO-Lib/Changes \ - $PKG/usr/doc/$PRGNAM-$VERSION/SBO-Lib +cp -a SBO-Lib/README SBO-Lib/Changes $PKG/usr/doc/$PRGNAM-$VERSION/SBO-Lib cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install |