mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
libraries/ptlib: Miscellaneous cleanups.
This commit is contained in:
parent
1b86d50731
commit
9239914738
2 changed files with 10 additions and 3 deletions
|
@ -7,5 +7,3 @@ has also been ported to many other systems.
|
|||
Since then the system has grown to include many classes that assist
|
||||
in writing complete multi-platform applications. So it became a
|
||||
Portable Tools Library and was renamed to PTLib.
|
||||
|
||||
libv4l is not strictly a prerequisite, but is strongly recommended.
|
||||
|
|
|
@ -24,10 +24,19 @@
|
|||
|
||||
PRGNAM=ptlib
|
||||
VERSION=${VERSION:-2.6.6}
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue