Package Details: tenacity-git 1:r14921.g8119cb11c-2

Git Clone URL: https://aur.archlinux.org/tenacity-git.git (read-only, click to copy)
Package Base: tenacity-git
Description: An easy-to-use multi-track audio editor and recorder, forked from Audacity
Upstream URL: https://tenacityaudio.org
Keywords: audacity audio audio-applications audio-processing floss libre privacy-friendly privacy-preserving recorder recording-app
Licenses: GPL2, CCPL
Groups: pro-audio
Conflicts: tenacity
Provides: tenacity
Submitter: Darkpelz
Maintainer: FabioLolix
Last Packager: FabioLolix
Votes: 86
Popularity: 0.000164
First Submitted: 2021-07-07 11:51 (UTC)
Last Updated: 2023-12-23 15:01 (UTC)

Pinned Comments

Latest Comments

1 2 3 4 5 6 .. 17 Next › Last »

sbrl commented on 2025-07-25 16:55 (UTC)

Getting a cmake error as of today:

....
-- Looking for lrintf - found
-- Looking for mlock
-- Looking for mlock - found
-- Building shared Tenacity libraries
-- Found Python3: /usr/bin/python3.13 (found version "3.13.5") found components: Interpreter
CMake Error at CMakeLists.txt:530 (find_package):
  By not providing "FindRapidJSON.cmake" in CMAKE_MODULE_PATH this project
  has asked CMake to find a package configuration file provided by
  "RapidJSON", but CMake did not find one.

  Could not find a package configuration file provided by "RapidJSON" with
  any of the following names:

    RapidJSONConfig.cmake
    rapidjson-config.cmake

  Add the installation prefix of "RapidJSON" to CMAKE_PREFIX_PATH or set
  "RapidJSON_DIR" to a directory containing one of the above files.  If
  "RapidJSON" provides a separate development package or SDK, be sure it has
  been installed.


-- Configuring incomplete, errors occurred!
==> ERROR: A failure occurred in build().
    Aborting...
Build failed with exit code 4 in /home/sbrl/.cache/rua/build/tenacity-git

seo.disparate commented on 2025-05-24 13:06 (UTC)

For those having problems compiling this as of 2025-05-24, I was able to get it to build by not using Clang, but Gcc instead:

Replace

CC=clang CXX=clang++ cmake \

with

CC=gcc CXX=g++ cmake \

in the build function of the PKGBUILD. There are also some incompatibilities with audacity if you want both to be installed at the same time (files existing in both packages).

gperson commented on 2025-01-15 02:29 (UTC)

@seo.disparate /usr/lib/tenacity/modules should still exist. It might not have been corrected on the latest audacity-3.7-rebase branch yet.

This should work for now, but I may make a change correcting this later. Just a heads up.

seo.disparate commented on 2025-01-15 02:26 (UTC)

I needed to change the PKGBUILD to fix the build:

Add rapidjson as a dependency.

Remove chrpath --delete "${pkgdir}"/usr/lib/tenacity/modules/*.so since usr/lib/tenacity/modules directory doesn't exist anymore.

FabioLolix commented on 2024-09-02 15:18 (UTC)

@xiota can't replicate your build issue

/home/builder/build/PKGBUILD: line 47: cd: images/icons: No such file or directory

images/icons is there upstream and untouched since 7 months

https://github.com/FabioLolix/buildlogs/commit/a60a45d4bf4124405a809b7a1f795e73379109a6

username227 commented on 2024-03-28 21:11 (UTC)

@gperson yes it worked now. thanks for the quick response.

gperson commented on 2024-03-28 20:30 (UTC)

@username227 Try building the package again. I just pushed a fix for it.

username227 commented on 2024-03-28 20:16 (UTC) (edited on 2024-03-28 20:17 (UTC) by username227)

What's causing this?

/usr/bin/ld: ../shared/RelWithDebInfo/lib-theme.so: undefined reference to `ThemePackage::operator=(ThemePackage&&)' clang++: error: linker command failed with exit code 1 (use -v to see invocation) make[2]: *** [src/CMakeFiles/Tenacity.dir/build.make:7307: bin/RelWithDebInfo/tenacity] Error 1 make[1]: *** [CMakeFiles/Makefile2:1333: src/CMakeFiles/Tenacity.dir/all] Error 2 make: *** [Makefile:156: all] Error 2 ==> ERROR: A failure occurred in build(). Aborting... -> error making: tenacity-git-exit status 4 -> Failed to install the following packages. Manual intervention is required: tenacity-git - exit status 4

xAsh commented on 2024-03-14 19:56 (UTC)

I'm not sure if I should ask this first on here or on codeberg, but can any of you see the "Measure RMS" plug-in in the plug-in lists (rms.ny)? That's the only one of those installed in /usr/share/tenacity/plug-ins/ that I can simply not find in the plug-ins menu.

FabioLolix commented on 2024-03-02 09:26 (UTC)

@keldrin use a command that delete the src folder after the package is build, I'm using alias mkpkg="LANG=C makepkg -scC"

mv is used in prepare() but building again with previous builds artifacts is not reccomended