diff options
author | Pierre Cazenave <pwcazenave at gmail {dot} com> | 2010-06-29 20:44:30 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-06-29 20:44:30 -0500 |
commit | f1615185375703312952188f723070a1c653421c (patch) | |
tree | 9727ae77db4c6fcbc8f198b0926d520fc3b07cfd /misc/viking/viking.SlackBuild | |
parent | 66ad06bd2f6fb9d1386367f41e408fbb65102d1d (diff) | |
download | slackbuilds-f1615185375703312952188f723070a1c653421c.tar.gz |
misc/viking: Updated for version 0.9.94.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'misc/viking/viking.SlackBuild')
-rw-r--r-- | misc/viking/viking.SlackBuild | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/misc/viking/viking.SlackBuild b/misc/viking/viking.SlackBuild index a510817dcc..2844caef18 100644 --- a/misc/viking/viking.SlackBuild +++ b/misc/viking/viking.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for viking. -# Copyright 2009 Pierre Cazenave <pwcazenave {at} gmail [dot] com> +# Copyright 2009,2010 Pierre Cazenave <pwcazenave {at} gmail [dot] com> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,16 +23,14 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=viking -VERSION=${VERSION:-0.9.9} +VERSION=${VERSION:-0.9.94} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -# Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i486 ;; arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; esac fi @@ -75,15 +73,15 @@ CXXFLAGS="$SLKCFLAGS" \ --localstatedir=/var \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --docdir=/usr/doc/$PRGNAM-$VERSION \ + --mandir=/usr/man \ + --disable-scrollkeeper \ --build=$ARCH-slackware-linux make make install DESTDIR=$PKG -( cd $PKG - find . | xargs file | grep -E "executable|shared object" | grep ELF | \ - cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true -) +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true # /usr/man is empty rm -rf $PKG/usr/man |