desktop/slock: Miscellaneous cleanups

This commit is contained in:
Robby Workman 2010-05-23 00:43:31 -05:00
parent 4d896df4cb
commit ccbd0f3fa6
2 changed files with 14 additions and 2 deletions

View file

@ -7,10 +7,19 @@
PRGNAM=slock
VERSION=${VERSION:-0.9}
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) export ARCH=i486 ;;
arm*) export ARCH=arm ;;
# Unless $ARCH is already set, use uname -m for all other archs:
*) export ARCH=$( uname -m ) ;;
esac
fi
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
@ -25,6 +34,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
else
SLKCFLAGS="-O2"
LIBDIRSUFFIX=""
fi
set -e

View file

@ -1,7 +1,7 @@
PRGNAM="slock"
VERSION="0.9"
HOMEPAGE="http://tools.suckless.org/slock"
DOWNLOAD="http://code.suckless.org/dl/tools/slock-0.9.tar.gz"
DOWNLOAD="http://dl.suckless.org/tools/slock-0.9.tar.gz"
MD5SUM="df342ad129cf2c3b8eb8da9d9d0ab845"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""