Package Details: loudness-scanner-git v0.6.0.r2.g3e38b3e-1

Git Clone URL: https://aur.archlinux.org/loudness-scanner-git.git (read-only, click to copy)
Package Base: loudness-scanner-git
Description: EBUR128 ReplayGain loudness normalization tool
Upstream URL: https://github.com/jiixyj/loudness-scanner
Keywords: ebur128 loudness normalization replaygain
Licenses: MIT
Conflicts: loudness-scanner
Provides: loudness-scanner
Submitter: Xenograph
Maintainer: crowdigit
Last Packager: crowdigit
Votes: 8
Popularity: 0.28
First Submitted: 2015-11-18 02:35 (UTC)
Last Updated: 2024-03-13 04:57 (UTC)

Dependencies (10)

Required by (0)

Sources (2)

Latest Comments

« First ‹ Previous 1 2

gabor_zoka commented on 2017-10-07 23:58 (UTC)

This patch worked for me: --- aur-original/loudness-scanner-git/PKGBUILD 2015-11-18 02:39:43.000000000 +0000 +++ aur-modified/loudness-scanner-git/PKGBUILD 2017-10-08 00:52:57.470862680 +0100 @@ -21,14 +21,12 @@ prepare() { cd "$srcdir/$pkgname" git submodule init - git submodule deinit ebur128 git submodule update - sed -i '/add_subdirectory(ebur128\/ebur128)/d' ./CMakeLists.txt } build() { cd "$srcdir/$pkgname" - cmake -DDISABLE_GTK2:BOOL=ON -DDISABLE_QT4:BOOL=ON . + cmake -DDISABLE_GTK2:BOOL=ON -DDISABLE_QT4:BOOL=ON -DDISABLE_QT5:BOOL=ON . make } @@ -36,6 +34,9 @@ cd "$srcdir/$pkgname" install -Dm 644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" install -Dm 755 loudness "${pkgdir}/usr/bin/loudness" + for i in libinput_*; do + install -Dm 644 "$i" "${pkgdir}/usr/lib/$i" + done } pkgver() {

Alister.Hood commented on 2017-03-18 07:26 (UTC)

Looks like it just needs to be changed to actually package the plugins.

Alister.Hood commented on 2017-03-18 02:18 (UTC)

Does this actually work for anybody? I get "Warning: no plugins found!", regardless of whether or not I alter the prepare function as ansatz described.

ansatz commented on 2015-12-01 18:47 (UTC)

If these lines are in the prepare function: git submodule deinit ebur128 and sed -i '/add_subdirectory(ebur128\/ebur128)/d' ./CmakeLists.txt the plugins are not built and consequently aren't installed. Comment those out and try again, the plugins appear. See here for more ”coder-friendly” observations: https://github.com/jiixyj/loudness-scanner/issues/12

Xenograph commented on 2015-11-30 17:29 (UTC)

ansatz: You may have to reinstall the package if you installed those after installing loudness-scanner, I believe it looks for the libraries at compile time. If that's not the issue, then I'm not sure. This is the output from my CMake configure and I have no issues: -- status found / disabled -- -- queue.h: no using system copy of queue.h -- speexdsp: no no -- glib-2.0: yes no -- gthread-2.0: yes no -- sndfile: yes no -- taglib: yes no -- mpg123: yes no -- mpcdec: no no -- gstreamer: no no -- ffmpeg: yes no -- rsvg2: yes no -- gtk2: yes yes -- qt4: no yes

ansatz commented on 2015-11-30 16:45 (UTC)

I'm getting: "Warning: no plugins found!" despite having both ffmpeg and mpg123 installed.