mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
development/epydoc: Fixed ARCH setting - this is not noarch
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
e76ce267fd
commit
4c74756b58
1 changed files with 9 additions and 2 deletions
|
@ -23,10 +23,17 @@
|
|||
|
||||
PRGNAM=epydoc
|
||||
VERSION=3.0.1
|
||||
ARCH=${ARCH:-noarch}
|
||||
BUILD=${BUILD:-1}
|
||||
BUILD=${BUILD:-2}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
|
|
Loading…
Reference in a new issue