diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2010-05-20 00:17:01 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-21 01:45:07 -0500 |
commit | 9239914738d65e4ccebe56ac66bc158c8f15b55e (patch) | |
tree | 2c5234f21279c70fb382affed2a9b1a511075afe /libraries/ptlib | |
parent | 1b86d507311cfd5164a1a9a71e98a4d7b9ae109b (diff) | |
download | slackbuilds-9239914738d65e4ccebe56ac66bc158c8f15b55e.tar.gz |
libraries/ptlib: Miscellaneous cleanups.
Diffstat (limited to 'libraries/ptlib')
-rw-r--r-- | libraries/ptlib/README | 2 | ||||
-rw-r--r-- | libraries/ptlib/ptlib.SlackBuild | 11 |
2 files changed, 10 insertions, 3 deletions
diff --git a/libraries/ptlib/README b/libraries/ptlib/README index 9b811db068..cdfb6fd88d 100644 --- a/libraries/ptlib/README +++ b/libraries/ptlib/README @@ -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. diff --git a/libraries/ptlib/ptlib.SlackBuild b/libraries/ptlib/ptlib.SlackBuild index b091c0e3de..e505722fdc 100644 --- a/libraries/ptlib/ptlib.SlackBuild +++ b/libraries/ptlib/ptlib.SlackBuild @@ -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 |