Package Details: audacity-git 3.4.2.r93.g86a6b6df8-1

Git Clone URL: https://aur.archlinux.org/audacity-git.git (read-only, click to copy)
Package Base: audacity-git
Description: A program that lets you manipulate digital audio waveforms
Upstream URL: https://www.audacityteam.org/
Keywords: audio editor
Licenses: GPL2, CCPL
Groups: pro-audio
Conflicts: audacity
Provides: audacity, ladspa-host, lv2-host, vamp-host, vst-host, vst3-host
Submitter: proudzhu
Maintainer: ongyx
Last Packager: ongyx
Votes: 15
Popularity: 0.000005
First Submitted: 2015-11-02 16:13 (UTC)
Last Updated: 2023-11-20 13:54 (UTC)

Required by (113)

Sources (1)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 Next › Last »

bugrasan commented on 2020-11-10 07:43 (UTC)

same as aviallon, fails to build.

darkcity commented on 2020-09-16 14:24 (UTC)

To echo what availlon said, Audacity and it's version of wxWidgets should be built against gtk2.

aviallon commented on 2020-08-23 23:14 (UTC)

Fails to build because Audacity 3.0.0 needs a special version of wxWidgets : https://wiki.audacityteam.org/wiki/Building_for_Distros

XTREEMRAGE commented on 2020-06-28 09:42 (UTC)

@oberon2007, Thanks that worked!

oberon2007 commented on 2020-06-28 00:14 (UTC)

@XTREEMRAGE clang needs to be installed. Adding it to makedepends now.

XTREEMRAGE commented on 2020-06-27 22:04 (UTC)

Getting this error on updating:

CMake Error at /usr/share/cmake-3.17/Modules/CMakeDetermineCCompiler.cmake:49 (message):
  Could not find compiler set in environment variable CC:

  clang.
Call Stack (most recent call first):
  CMakeLists.txt:81 (project)


CMake Error: CMAKE_C_COMPILER not set, after EnableLanguage
CMake Error: CMAKE_CXX_COMPILER not set, after EnableLanguage
-- Configuring incomplete, errors occurred!

And the log only shows this: The system is: Linux - 4.19.126-1-MANJARO - x86_64

What can I do to fix this?

sharethewisdom commented on 2020-06-08 20:44 (UTC)

a build with cmake:

build() {
  mkdir $_pkgname/build
  cd $_pkgname/build
  CC=clang cmake \
    -DCMAKE_BUILD_TYPE=RelWithDebInfo \
    -DCMAKE_INSTALL_PREFIX=/usr \
    ..
  make
}

package() {
  cd $_pkgname/build
  make DESTDIR="${pkgdir}" install
  cd .. 
  install -vDm 644 plug-ins/*.ny -t "${pkgdir}/usr/share/${pkgname}/plug-ins"
}

worked fine for me. Namcap output:

$ namcap audacity-git-2.4.1.r214.ga085057b6-1-x86_64.pkg.tar.xz
audacity-git E: ELF file ('usr/share/audacity/modules/mod-script-pipe.so') outside of a valid path.
audacity-git E: Dependency portsmf detected and not included (libraries ['usr/lib/libportSMF.so.0'] needed in files ['usr/bin/audacity'])
audacity-git E: Dependency suil detected and not included (libraries ['usr/lib/libsuil-0.so.0'] needed in files ['usr/bin/audacity'])
audacity-git E: Dependency twolame detected and not included (libraries ['usr/lib/libtwolame.so.0'] needed in files ['usr/bin/audacity'])
audacity-git E: Dependency libid3tag detected and not included (libraries ['usr/lib/libid3tag.so.0'] needed in files ['usr/bin/audacity'])
audacity-git E: Dependency vamp-plugin-sdk detected and not included (libraries ['usr/lib/libvamp-hostsdk.so.3'] needed in files ['usr/bin/audacity'])
audacity-git E: Dependency lilv detected and not included (libraries ['usr/lib/liblilv-0.so.0'] needed in files ['usr/bin/audacity'])
audacity-git E: Dependency wxgtk2 detected and not included (libraries ['usr/lib/libwx_gtk2u_core-3.0.so.0', 'usr/lib/libwx_gtk2u_qa-3.0.so.0', 'usr/lib/libwx_gtk2u_adv-3.0.so.0', 'usr/lib/libwx_gtk2u_html-3.0.so.0'] needed in files ['usr/bin/audacity'])
audacity-git W: Dependency flac detected but optional (libraries ['usr/lib/libFLAC.so.8', 'usr/lib/libFLAC++.so.6'] needed in files ['usr/bin/audacity'])
audacity-git W: Dependency jack detected but optional (libraries ['usr/lib/libjack.so.0'] needed in files ['usr/bin/audacity'])
audacity-git W: Dependency expat included but already satisfied
audacity-git W: Dependency gcc-libs included but already satisfied
audacity-git W: Dependency gdk-pixbuf2 included but already satisfied
audacity-git W: Dependency glibc included but already satisfied
audacity-git W: Dependency included and not needed ('wxgtk3')

ZeroDot1 commented on 2020-05-25 15:53 (UTC)

:: Parsing SRCINFO (1/1): audacity-git ==> Erstelle Paket: audacity-git 2.4.1.r1.g947ed3791-1 (Mo 25 Mai 2020 17:48:09 CEST) ==> Empfange Quellen... -> Aktualisiere das audacity git Repo... Fordere an von origin ==> Überprüfe source Dateien mit sha1sums... audacity ... Übersprungen ==> Erstelle Paket: audacity-git 2.4.1.r1.g947ed3791-1 (Mo 25 Mai 2020 17:48:12 CEST) ==> Prüfe Laufzeit-Abhängigkeiten... ==> Prüfe Buildtime-Abhängigkeiten... ==> Empfange Quellen... -> Aktualisiere das audacity git Repo... Fordere an von origin ==> Überprüfe source Dateien mit sha1sums... audacity ... Übersprungen ==> Entferne existierendes $srcdir/ Verzeichnis... ==> Entpacke Quellen... -> Erstelle Arbeitskopie des audacity git Repos... Klone nach 'audacity' ... Fertig. Aktualisiere Dateien: 100% (8315/8315), Fertig. ==> Beginne prepare()... autoreconf: 'configure.ac' or 'configure.in' is required ==> FEHLER: Ein Fehler geschah in prepare(). Breche ab... Error making: audacity-git

XTREEMRAGE commented on 2020-05-22 18:13 (UTC)

Eventually I removed the dependencies from the build file, at least I could install it and it starts fine (haven't tried it out fully yet).