mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
system/dash: Updated for version 0.5.6.1.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
c456f01790
commit
6643d1b57d
2 changed files with 7 additions and 13 deletions
|
@ -5,16 +5,14 @@
|
||||||
# Written by Vincent Batts, http://hashbangbash.com/
|
# Written by Vincent Batts, http://hashbangbash.com/
|
||||||
|
|
||||||
PRGNAM=dash
|
PRGNAM=dash
|
||||||
VERSION=${VERSION:-0.5.5.1}
|
VERSION=${VERSION:-0.5.6.1}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_SBo}
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
# Automatically determine the architecture we're building on:
|
|
||||||
if [ -z "$ARCH" ]; then
|
if [ -z "$ARCH" ]; then
|
||||||
case "$( uname -m )" in
|
case "$( uname -m )" in
|
||||||
i?86) ARCH=i486 ;;
|
i?86) ARCH=i486 ;;
|
||||||
arm*) ARCH=arm ;;
|
arm*) ARCH=arm ;;
|
||||||
# Unless $ARCH is already set, use uname -m for all other archs:
|
|
||||||
*) ARCH=$( uname -m ) ;;
|
*) ARCH=$( uname -m ) ;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
@ -73,15 +71,11 @@ mkdir -p $PKG/usr/bin
|
||||||
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||||
|
|
||||||
( cd $PKG/usr/man
|
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
||||||
find . -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
|
||||||
for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
|
||||||
)
|
|
||||||
|
|
||||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
cp -a \
|
cp -a COPYING ChangeLog $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
COPYING ChangeLog \
|
|
||||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
|
||||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||||
|
|
||||||
mkdir -p $PKG/install
|
mkdir -p $PKG/install
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
PRGNAM="dash"
|
PRGNAM="dash"
|
||||||
VERSION="0.5.5.1"
|
VERSION="0.5.6.1"
|
||||||
HOMEPAGE="http://gondor.apana.org.au/~herbert/dash/"
|
HOMEPAGE="http://gondor.apana.org.au/~herbert/dash/"
|
||||||
DOWNLOAD="http://gondor.apana.org.au/~herbert/dash/files/dash-0.5.5.1.tar.gz"
|
DOWNLOAD="http://gondor.apana.org.au/~herbert/dash/files/dash-0.5.6.1.tar.gz"
|
||||||
MD5SUM="7ac832b440b91f5a52cf8eb68e172616"
|
MD5SUM="1c846f4f5a33c0050b2045a6f7037e56"
|
||||||
DOWNLOAD_x86_64=""
|
DOWNLOAD_x86_64=""
|
||||||
MD5SUM_x86_64=""
|
MD5SUM_x86_64=""
|
||||||
MAINTAINER="Vincent Batts"
|
MAINTAINER="Vincent Batts"
|
||||||
|
|
Loading…
Reference in a new issue