2010-05-11 15:00:25 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2010-05-11 20:30:44 +02:00
|
|
|
# Slackware build script for Audacity
|
2010-05-11 15:00:25 +02:00
|
|
|
|
2010-06-01 02:36:24 +02:00
|
|
|
# Copyright 2006-2010 Chess Griffin <chess@chessgriffin.com>
|
2015-04-08 16:54:37 +02:00
|
|
|
# Copyright 2011-2015 Matteo Bernardini <ponce@slackbuilds.org>
|
2010-05-12 17:36:51 +02:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use of this script, with or without modification, is
|
|
|
|
# permitted provided that the following conditions are met:
|
|
|
|
#
|
|
|
|
# 1. Redistributions of this script must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
|
|
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
|
|
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
|
|
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
|
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
|
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
# Thanks to Eric Hameleers for adding the audacity.desktop file
|
|
|
|
# and other tweaks and bug fixes. Thanks to Heinz Wiesinger for
|
2010-06-29 06:21:52 +02:00
|
|
|
# bug fixes and the soundtouch and twolame improvements.
|
2010-05-11 15:00:25 +02:00
|
|
|
|
|
|
|
# Modified by the SlackBuilds.org project
|
|
|
|
|
2010-05-11 20:30:44 +02:00
|
|
|
PRGNAM=audacity
|
2015-04-08 16:54:37 +02:00
|
|
|
VERSION=${VERSION:-2.1.0}
|
2015-06-03 10:50:36 +02:00
|
|
|
BUILD=${BUILD:-2}
|
2010-05-11 15:00:25 +02:00
|
|
|
TAG=${TAG:-_SBo}
|
2010-05-11 20:30:44 +02:00
|
|
|
|
2010-06-04 06:59:43 +02:00
|
|
|
if [ -z "$ARCH" ]; then
|
|
|
|
case "$( uname -m )" in
|
|
|
|
i?86) ARCH=i486 ;;
|
|
|
|
arm*) ARCH=arm ;;
|
|
|
|
*) ARCH=$( uname -m ) ;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
2010-05-11 15:00:25 +02:00
|
|
|
CWD=$(pwd)
|
2010-05-11 20:30:44 +02:00
|
|
|
TMP=${TMP:-/tmp/SBo}
|
2010-05-11 15:00:25 +02:00
|
|
|
PKG=$TMP/package-$PRGNAM
|
|
|
|
OUTPUT=${OUTPUT:-/tmp}
|
|
|
|
|
|
|
|
if [ "$ARCH" = "i486" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
2010-05-12 17:36:51 +02:00
|
|
|
LIBDIRSUFFIX=""
|
2010-05-11 15:00:25 +02:00
|
|
|
elif [ "$ARCH" = "i686" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
2010-05-12 17:36:51 +02:00
|
|
|
LIBDIRSUFFIX=""
|
2010-05-11 20:30:44 +02:00
|
|
|
elif [ "$ARCH" = "x86_64" ]; then
|
|
|
|
SLKCFLAGS="-O2 -fPIC"
|
2010-05-12 17:36:51 +02:00
|
|
|
LIBDIRSUFFIX="64"
|
2010-06-04 06:59:43 +02:00
|
|
|
else
|
|
|
|
SLKCFLAGS="-O2"
|
|
|
|
LIBDIRSUFFIX=""
|
2010-05-11 15:00:25 +02:00
|
|
|
fi
|
|
|
|
|
2015-04-08 16:54:37 +02:00
|
|
|
if [ -x /usr/bin/listplugins ]; then do_ladspa="--with-ladspa"; else do_ladspa="--without-ladspa"; fi
|
|
|
|
if pkg-config --exists libavcodec; then do_ffmpeg="-ffmpeg=system"; else do_ffmpeg="out-ffmpeg"; fi
|
|
|
|
if pkg-config --exists lv2; then do_lv2="-lv2=system"; else do_lv2="out-lv2"; fi
|
|
|
|
if pkg-config --exists soundtouch; then do_soundtouch="-soundtouch=system"; else do_soundtouch="out-soundtouch"; fi
|
|
|
|
if pkg-config --exists twolame; then do_twolame="-libtwolame=system"; else do_twolame="out-libtwolame"; fi
|
|
|
|
if pkg-config --exists vamp-hostsdk; then do_vamp="-libvamp=system"; else do_vamp="out-libvamp"; fi
|
2013-02-10 16:25:50 +01:00
|
|
|
|
2010-06-29 06:21:52 +02:00
|
|
|
set -e
|
|
|
|
|
2010-05-11 15:00:25 +02:00
|
|
|
rm -rf $PKG
|
|
|
|
mkdir -p $TMP $PKG $OUTPUT
|
2010-06-29 06:21:52 +02:00
|
|
|
cd $TMP
|
2012-07-10 07:06:49 +02:00
|
|
|
rm -rf $PRGNAM-src-$VERSION
|
2015-04-08 16:54:37 +02:00
|
|
|
tar xvf $CWD/$PRGNAM-src-$VERSION.tar.?z*
|
2012-04-20 15:01:39 +02:00
|
|
|
cd $PRGNAM-src-$VERSION
|
2010-05-11 15:00:25 +02:00
|
|
|
chown -R root:root .
|
2013-11-22 08:37:19 +01:00
|
|
|
find -L . \
|
|
|
|
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
2010-05-12 17:36:51 +02:00
|
|
|
-exec chmod 755 {} \; -o \
|
|
|
|
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
|
|
|
-exec chmod 644 {} \;
|
2010-05-11 20:30:44 +02:00
|
|
|
|
2015-04-08 16:54:37 +02:00
|
|
|
# fix vamp plugin search path on x86_64 - thanks to B. Watson
|
2012-04-20 15:01:39 +02:00
|
|
|
sed -i "s,lib/vamp,lib$LIBDIRSUFFIX/vamp,g" \
|
2015-04-08 16:54:37 +02:00
|
|
|
lib-src/libvamp/src/vamp-hostsdk/PluginHostAdapter.cpp || true
|
2011-03-05 10:32:57 +01:00
|
|
|
|
2015-06-03 10:50:36 +02:00
|
|
|
# fix building against ffmpeg-2.6.x, patch from archlinux
|
|
|
|
patch -p1 < $CWD/audacity-ffmpeg.patch
|
|
|
|
|
2014-10-06 08:03:10 +02:00
|
|
|
# libsoxr is the new default resampling library
|
2010-05-11 15:00:25 +02:00
|
|
|
CFLAGS="$SLKCFLAGS" \
|
|
|
|
CXXFLAGS="$SLKCFLAGS" \
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
2010-05-12 17:36:51 +02:00
|
|
|
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
2010-05-11 15:00:25 +02:00
|
|
|
--enable-unicode \
|
2010-05-11 20:30:44 +02:00
|
|
|
--enable-nyquist \
|
2015-04-08 16:54:37 +02:00
|
|
|
--with-expat=system \
|
|
|
|
--with-libvorbis=system \
|
|
|
|
--with-libmad=system \
|
|
|
|
--with-libflac=system \
|
|
|
|
--with-libsndfile=system \
|
|
|
|
--with-libid3tag=system \
|
2014-10-06 08:03:10 +02:00
|
|
|
--with-libsoxr \
|
2015-04-08 16:54:37 +02:00
|
|
|
--with-portaudio \
|
|
|
|
$do_ladspa \
|
|
|
|
--with$do_ffmpeg \
|
|
|
|
--with$do_lv2 \
|
|
|
|
--with$do_soundtouch \
|
|
|
|
--with$do_twolame \
|
|
|
|
--with$do_vamp \
|
|
|
|
--without-libresample \
|
|
|
|
--without-libsamplerate
|
|
|
|
|
|
|
|
# ensure we use the system headers for these, note we do this after
|
|
|
|
# configure as it wants to run sub-configures in these dirs
|
|
|
|
for i in ffmpeg expat libid3tag libflac libmad libresample libsndfile libvamp lv2 soundtouch twolame; do
|
|
|
|
rm -rf lib-src/$i
|
|
|
|
done
|
2010-05-11 15:00:25 +02:00
|
|
|
|
2010-06-29 06:21:52 +02:00
|
|
|
make
|
|
|
|
make install DESTDIR=$PKG
|
2010-05-11 15:00:25 +02:00
|
|
|
|
2015-04-08 16:54:37 +02:00
|
|
|
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
2010-05-19 08:31:01 +02:00
|
|
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
2010-05-11 15:00:25 +02:00
|
|
|
|
2010-05-12 17:36:51 +02:00
|
|
|
# We're going to overwrite the included audacity.desktop file with ours,
|
2010-05-11 15:00:25 +02:00
|
|
|
# and the icon isn't added at all by upstream, so we'll do that here
|
2010-05-12 17:36:51 +02:00
|
|
|
install -D -m 0644 $CWD/audacity.desktop \
|
|
|
|
$PKG/usr/share/applications/audacity.desktop
|
|
|
|
install -D -m 0644 images/AudacityLogo48x48.xpm \
|
|
|
|
$PKG/usr/share/pixmaps/audacity.xpm
|
2010-05-11 15:00:25 +02:00
|
|
|
|
2015-04-08 16:54:37 +02:00
|
|
|
# Move manpage directory to proper location
|
2010-05-11 15:00:25 +02:00
|
|
|
mv $PKG/usr/share/man $PKG/usr
|
2015-04-08 16:54:37 +02:00
|
|
|
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
2010-05-11 15:00:25 +02:00
|
|
|
|
|
|
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
2013-02-10 16:25:50 +01:00
|
|
|
rm -fr $PKG/usr/share/doc
|
2010-05-11 20:30:44 +02:00
|
|
|
cp LICENSE.txt README.txt $PKG/usr/doc/$PRGNAM-$VERSION
|
2010-05-11 15:00:25 +02:00
|
|
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
|
|
|
|
|
|
|
mkdir -p $PKG/install
|
|
|
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
|
|
|
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
|
|
|
|
|
|
|
cd $PKG
|
2010-05-13 00:20:50 +02:00
|
|
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|