diff options
Diffstat (limited to 'system/sbotools/sbotools.SlackBuild')
-rw-r--r-- | system/sbotools/sbotools.SlackBuild | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/system/sbotools/sbotools.SlackBuild b/system/sbotools/sbotools.SlackBuild index 67b333ce09..27fa7236b0 100644 --- a/system/sbotools/sbotools.SlackBuild +++ b/system/sbotools/sbotools.SlackBuild @@ -26,7 +26,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=sbotools -VERSION=${VERSION:-3.5} +VERSION=${VERSION:-3.8.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -63,7 +63,7 @@ find -L . \ ( cd SBO-Lib /usr/bin/perl Makefile.PL \ PREFIX=/usr \ - INSTALLDIRS=site \ + INSTALLDIRS=vendor \ INSTALLVENDORMAN1DIR=/usr/man/man1 \ INSTALLVENDORMAN3DIR=/usr/man/man3 \ INSTALLMAN3DIR=none @@ -84,7 +84,7 @@ for i in $SCRIPTS; do install -m 0644 completions/zsh/_sbo$i $PKG/usr/share/zsh/site-functions install -m 0644 completions/bash/sbo$i $PKG/usr/share/bash-completion/completions/sbo$i done -# sbofind and parts of some other scripts can be used without root +# sbofind and parts of most other scripts can be used without root mkdir -p $PKG/usr/bin ( cd $PKG/usr/bin @@ -111,8 +111,10 @@ ln -s sbocheck.1 sbosnap.1 ) mkdir -p $PKG/etc/sbotools +cp etc/obsolete $PKG/etc/sbotools/obsolete cp etc/sbotools.conf $PKG/etc/sbotools/sbotools.conf.new cp etc/sbotools.hints $PKG/etc/sbotools/sbotools.hints.new +cp etc/sbotools.colors $PKG/etc/sbotools/sbotools.colors.new 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 @@ -122,7 +124,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/ChangeLog.md $PKG/usr/doc/$PRGNAM-$VERSION/SBO-Lib cp -a LICENSE THANKS $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |