diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2010-05-21 01:42:00 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-21 01:42:00 -0500 |
commit | df6a2057baa6bc0c3a168e2f71e0418e745c74f7 (patch) | |
tree | bdf60e9065dfe3b80affd8e110a50f8a7415b1b4 /multimedia/dssi | |
parent | 69051d5b38fa6e8866ae98ca62f96e6834442788 (diff) | |
download | slackbuilds-df6a2057baa6bc0c3a168e2f71e0418e745c74f7.tar.gz |
multimedia/dssi: Miscellaneous cleanups.
Diffstat (limited to 'multimedia/dssi')
-rw-r--r-- | multimedia/dssi/README | 3 | ||||
-rw-r--r-- | multimedia/dssi/dssi.SlackBuild | 19 |
2 files changed, 15 insertions, 7 deletions
diff --git a/multimedia/dssi/README b/multimedia/dssi/README index 42406a229b..c2fcd3821a 100644 --- a/multimedia/dssi/README +++ b/multimedia/dssi/README @@ -5,5 +5,4 @@ DSSI is an open and well-documented specification developed for use in Linux audio applications, although portable to other platforms. It may be thought of as LADSPA-for-instruments, or something comparable to VSTi. -This requires qt3 from extra/kde3-compat, ladspa_sdk, libsamplerate, liblo, -and jack. +This requires qt3 from extra/kde3-compat, ladspa_sdk, liblo, and jack. diff --git a/multimedia/dssi/dssi.SlackBuild b/multimedia/dssi/dssi.SlackBuild index 6461de1298..7b146623a8 100644 --- a/multimedia/dssi/dssi.SlackBuild +++ b/multimedia/dssi/dssi.SlackBuild @@ -6,10 +6,19 @@ PRGNAM=dssi VERSION=${VERSION:-1.0.0} -ARCH=${ARCH:-i486} BUILD=${BUILD:-2} 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 @@ -24,6 +33,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e @@ -72,10 +84,7 @@ chmod 0755 $PKG/etc/profile.d/* find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -) +find $PKG/usr/man -type f -exec gzip -9 {} \; mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cd $TMP/$PRGNAM-$VERSION/doc/ |