Package Details: audacity-git 3.6.3.r257.g652bfea82-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: None
Last Packager: ongyx
Votes: 16
Popularity: 0.27
First Submitted: 2015-11-02 16:13 (UTC)
Last Updated: 2024-09-10 16:47 (UTC)

Dependencies (48)

Required by (143)

Sources (1)

Latest Comments

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

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).

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

@oberon2007

pacman -Q | grep libid3tag libid3tag 0.15.1b-9

I have it installed -_-, I also refreshed my mirros but that wouldn't work. My machine is up-to-date.

Kernel: 4.19.122

oberon2007 commented on 2020-05-22 08:44 (UTC)

@XTREEMRAGE I have just installed the latest version without problem. Maybe you have some other package conflicts in your particular install. Make sure you have libid3tag installed, then you should be good.

XTREEMRAGE commented on 2020-05-22 07:37 (UTC)

@oberon2007 yeah I see it in the dependency list, but I get that when I want to install it. I also tried to remove cache, but getting the same error and it won't install...

First time I got this problem

oberon2007 commented on 2020-05-22 07:06 (UTC)

@XTREEMRAGE libid3tag.so is provided by libid3tag I see no problem there