diff options
author | Heinz Wiesinger <pprkut@liwjatan.at> | 2011-11-08 08:38:29 -0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-11-26 09:09:08 -0600 |
commit | a8362d26b293fbf5ebb5c3c7c1da7c4c0a8e7ae2 (patch) | |
tree | 9edc841428c590efd7e6e018100c12cfb2eaaf62 /network/udpcast/udpcast.SlackBuild | |
parent | 165deb2aa6d02b38c75d7f19c353aec72748f07b (diff) | |
download | slackbuilds-a8362d26b293fbf5ebb5c3c7c1da7c4c0a8e7ae2.tar.gz |
network/udpcast: Updated for version 20110710.
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'network/udpcast/udpcast.SlackBuild')
-rw-r--r-- | network/udpcast/udpcast.SlackBuild | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/network/udpcast/udpcast.SlackBuild b/network/udpcast/udpcast.SlackBuild index 531bc447ac..fade25ac42 100644 --- a/network/udpcast/udpcast.SlackBuild +++ b/network/udpcast/udpcast.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for udpcast -# Copyright 2007-2010 Heinz Wiesinger, Amsterdam, The Netherlands +# Copyright 2007-2011 Heinz Wiesinger, Amsterdam, The Netherlands # 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=udpcast -VERSION=20100130 +VERSION=20110710 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 @@ -84,10 +82,7 @@ make install DESTDIR=$PKG find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -) +find $PKG/usr/man -type f -exec gzip -9 {} \; mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a Changelog.txt COPYING cmd.html $PKG/usr/doc/$PRGNAM-$VERSION |