summaryrefslogtreecommitdiffstats
path: root/audacity
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2021-04-24 20:46:28 +0000
committer Eric Hameleers <alien@slackware.com>2021-04-24 20:46:28 +0000
commitc08a0946824e23dc72c97fa3f4fa76bfd64bcc1d (patch)
tree0d16a33b055c83f09e2accdecdd93895e80c5ca1 /audacity
parent7965cb98da7b6a5a1fe60a5d8da0aa0d44b15e15 (diff)
downloadasb-c08a0946824e23dc72c97fa3f4fa76bfd64bcc1d.tar.gz
asb-c08a0946824e23dc72c97fa3f4fa76bfd64bcc1d.tar.xz
audacity: updated to 3.0.2
Diffstat (limited to 'audacity')
-rwxr-xr-xaudacity/build/audacity.SlackBuild12
1 files changed, 9 insertions, 3 deletions
diff --git a/audacity/build/audacity.SlackBuild b/audacity/build/audacity.SlackBuild
index b9c39f11..b6768762 100755
--- a/audacity/build/audacity.SlackBuild
+++ b/audacity/build/audacity.SlackBuild
@@ -49,6 +49,8 @@
# * Added X-DAW category to desktop file.
# 3.0.0-1: 18/mar/2021 by Eric Hameleers <alien@slackware.com>
# * Update.
+# 3.0.2-1: 22/apr/2021 by Eric Hameleers <alien@slackware.com>
+# * Update.
#
# Run 'sh audacity.SlackBuild' to build a Slackware package.
# The package (.t?z) and .txt file as well as build logs are created in /tmp .
@@ -57,7 +59,7 @@
# -----------------------------------------------------------------------------
PRGNAM=audacity
-VERSION=${VERSION:-3.0.0}
+VERSION=${VERSION:-3.0.2}
BUILD=${BUILD:-1}
NUMJOBS=${NUMJOBS:-" -j$(nproc) "}
TAG=${TAG:-alien}
@@ -232,6 +234,10 @@ touch $OUTPUT/patch-${PRGNAM}.log
sed -e "s,lib/vamp,lib${LIBDIRSUFFIX}/vamp,g" \
-i lib-src/libvamp/src/vamp-hostsdk/PluginHostAdapter.cpp
+# Fix detection of JACK:
+sed -e "s/find_package( jack )/find_package( Jack )/" \
+ -i cmake-proxies/portaudio-v19/CMakeLists.txt
+
# Fix detection of local wx libraries:
sed -i src/CMakeLists.txt \
-e 's#${WXWIN}/lib#$ENV{MYBUILD}/lib#' \
@@ -266,7 +272,7 @@ cd build
-DCMAKE_VERBOSE_MAKEFILE:BOOL="ON" \
-Daudacity_lib_preference="system" \
-Daudacity_use_expat=system \
- -Daudacity_use_ffmpeg=linked \
+ -Daudacity_use_ffmpeg=loaded \
-Daudacity_use_flac=system \
-Daudacity_use_id3tag=system \
-Daudacity_use_ladspa:BOOL="ON" \
@@ -275,7 +281,7 @@ cd build
-Daudacity_use_mad=system \
-Daudacity_use_ogg=system \
-Daudacity_use_pa_alsa:BOOL="ON" \
- -Daudacity_use_pa_jack=linked \
+ -Daudacity_use_pa_jack=loaded \
-Daudacity_use_portaudio=local \
-Daudacity_use_sndfile=system \
-Daudacity_use_soxr=${SOXR_TYPE} \