diff options
author | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2015-11-27 22:46:48 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-11-28 07:25:59 +0700 |
commit | 328460ccc601258c23eb96d5794e9624e8209ac3 (patch) | |
tree | b22de66867669d5f4dec5fa8bf4218efed3b719c /system/sbotools/sbotools.SlackBuild | |
parent | ad91f79b29d486ed23f06f9e4e0fc0484af9a0b2 (diff) | |
download | slackbuilds-328460ccc601258c23eb96d5794e9624e8209ac3.tar.gz |
system/sbotools: Updated for version 1.9 + new maintainer.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/sbotools/sbotools.SlackBuild')
-rw-r--r-- | system/sbotools/sbotools.SlackBuild | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/system/sbotools/sbotools.SlackBuild b/system/sbotools/sbotools.SlackBuild index c64ebd9d81..3caf7f8c8e 100644 --- a/system/sbotools/sbotools.SlackBuild +++ b/system/sbotools/sbotools.SlackBuild @@ -1,11 +1,11 @@ -#!/usr/bin/bash +#!/bin/sh # # Slackware build script for <sbotools> # Written by Jacob Pipkin <j@dawnrazor.net> # Licensed under the WTFPL <http://sam.zoy.org/wtfpl/COPYING> PRGNAM=sbotools -VERSION=${VERSION:-1.8} +VERSION=${VERSION:-1.9} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -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,9 +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 \ - $PKG/usr/doc/$PRGNAM-$VERSION/SBO-Lib +cp -a SBO-Lib/{README,Changes} $PKG/usr/doc/$PRGNAM-$VERSION/SBO-Lib cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install |