Package Details: lib32-soundtouch 2.3.3-1

Git Clone URL: https://aur.archlinux.org/lib32-soundtouch.git (read-only, click to copy)
Package Base: lib32-soundtouch
Description: An open-source audio processing library for changing the tempo, pitch and playback rates of audio streams or audio files (32 bit)
Upstream URL: https://www.surina.net/soundtouch
Licenses: LGPL2.1
Submitter: Nocifer
Maintainer: patlefort
Last Packager: patlefort
Votes: 2
Popularity: 0.000000
First Submitted: 2022-01-25 14:39 (UTC)
Last Updated: 2024-04-06 15:00 (UTC)

Latest Comments

Nocifer commented on 2022-01-26 16:31 (UTC) (edited on 2022-01-26 16:34 (UTC) by Nocifer)

Heh, this warning is so common with AUR packages that I'd say it affects some 1/3 of those I currently have installed on my system. But it's usually benign, and usually occurs because something somewhere has deemed fit to preserve some build environment info for debug purposes. Which is exactly what the fix you've proposed fixes, it plain and simply notifies CMake that we're making a release build and thus no debug info needs to be preserved.

Even if there was no warning during the build process, it'd be good and proper to set the build type to 'Release' anyway, and I'd have done so had I noticed it during the copy-paste from the official x64 package. But I didn't, so I'll push a new release shortly :P

EDIT: Oh, and thanks!

MarsSeed commented on 2022-01-26 16:04 (UTC) (edited on 2023-05-23 10:33 (UTC) by MarsSeed)

Hey, thanks for uploading this!

There is a small issue reported by makepkg during install / upgrade:

==> Checking for packaging issues...
==> WARNING: Package contains reference to $srcdir
usr/lib32/libSoundTouch.so.2.3.1

Quick fix for this in PKGBUILD build(), using the following -Dvariable:

cmake -DCMAKE_BUILD_TYPE='Release'
# instead of:
# cmake -DCMAKE_BUILD_TYPE=''