extra/audacity: fix for v5

This commit is contained in:
Kevin Mihelich 2013-10-24 02:35:41 +00:00
parent 99a50a5525
commit 339d7e4085

View file

@ -3,6 +3,7 @@
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - added --disable-sse to configure
# - disable soundtouch on v5
pkgname=audacity
pkgver=2.0.5
@ -21,8 +22,11 @@ sha1sums=('f63cafb81f29e7f3813dc9f80fb1dfdbcfe46b33')
build() {
cd ${pkgname}-src-${pkgver}
[[ $CARCH == 'arm' ]] && CONFIG="--without-soundtouch"
PKG_CONFIG_PATH+="/usr/lib/ffmpeg-compat/pkgconfig" \
./configure --prefix=/usr --disable-sse
./configure --prefix=/usr --disable-sse $CONFIG
make
}