aboutsummaryrefslogtreecommitdiff
path: root/system/dash/dash.SlackBuild
diff options
context:
space:
mode:
authorVincent Batts <vbatts@hashbangbash.com>2010-11-28 14:12:35 -0600
committerHeinz Wiesinger <pprkut@slackbuilds.org>2010-11-29 12:45:58 +0100
commit6643d1b57d6bf09ece45d38b64d977156d7a4b6c (patch)
treee5f9c26b62c7a425fc643c166d8a0a10c83ef300 /system/dash/dash.SlackBuild
parentc456f0179055d8c5e84cc3ff6ec21d6a6a1b19ee (diff)
downloadslackbuilds-6643d1b57d6bf09ece45d38b64d977156d7a4b6c.tar.xz
system/dash: Updated for version 0.5.6.1.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/dash/dash.SlackBuild')
-rw-r--r--system/dash/dash.SlackBuild14
1 files changed, 4 insertions, 10 deletions
diff --git a/system/dash/dash.SlackBuild b/system/dash/dash.SlackBuild
index 1591d090e4dc..e5dcf24caef5 100644
--- a/system/dash/dash.SlackBuild
+++ b/system/dash/dash.SlackBuild
@@ -5,16 +5,14 @@
# Written by Vincent Batts, http://hashbangbash.com/
PRGNAM=dash
-VERSION=${VERSION:-0.5.5.1}
+VERSION=${VERSION:-0.5.6.1}
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
@@ -73,15 +71,11 @@ mkdir -p $PKG/usr/bin
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 {} \;
+for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- COPYING ChangeLog \
- $PKG/usr/doc/$PRGNAM-$VERSION
+cp -a COPYING ChangeLog $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install