diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2010-05-19 22:46:52 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-21 01:40:39 -0500 |
commit | 25687e4932b3a9c37dd9cd1ca0e9cdbc05e123eb (patch) | |
tree | f159d282ab9277ca591c7f3ce7e9da78d9876794 /multimedia | |
parent | cfac4ed3eeafbf71fe4dce148b2c3e7aaeb584e7 (diff) | |
download | slackbuilds-25687e4932b3a9c37dd9cd1ca0e9cdbc05e123eb.tar.gz |
multimedia/mlt: Miscellaneous cleanups.
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/mlt/README | 8 | ||||
-rw-r--r-- | multimedia/mlt/mlt.SlackBuild | 14 |
2 files changed, 15 insertions, 7 deletions
diff --git a/multimedia/mlt/README b/multimedia/mlt/README index fb794354b2..5353d27f7a 100644 --- a/multimedia/mlt/README +++ b/multimedia/mlt/README @@ -5,9 +5,5 @@ of applications. The functionality of the system is provided via an assortment of ready to use tools, XML authoring components, and an extensible plug-in based API. -This requires libdv, libsamplerate, and ffmpeg. -libquicktime is optional but recommended, since it will be needed -by kdenlive anyway. - -Optional: -By default PYTHON=yes for openshot.
\ No newline at end of file +This requires libdv and ffmpeg. libquicktime is optional but recommended, +since it will be needed by kdenlive anyway. diff --git a/multimedia/mlt/mlt.SlackBuild b/multimedia/mlt/mlt.SlackBuild index 22ed736198..2d4d538cc9 100644 --- a/multimedia/mlt/mlt.SlackBuild +++ b/multimedia/mlt/mlt.SlackBuild @@ -23,10 +23,19 @@ PRGNAM=mlt VERSION=${VERSION:-0.5.4} -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 @@ -52,6 +61,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |