[Pkg-kde-extras] Bug#597155: Debian Bug report logs - #597155 K3B can't find normalize-audio

Enhy enhy at fotolibre.net
Wed Jan 5 20:39:22 UTC 2011


Hi,

A solution has been found by the Ubuntu guys and I've tested in my debian 
squeeze and it works too:
https://bugs.launchpad.net/ubuntu/+source/k3b/+bug/45026
In short, the problem is that the version returned by normalize-audio --
version is "normalize 0.7.7", and "normalize-audio 0.7.7" is expected by k3b; 
so the solution is to change the name of the normalize-audio for normalize, 
and create a script named normalize-audio in which the version line is 
replaced by the accepted by k3b.
This is the script:
###
#/bin/bash
case "$1" in
        --version)
                echo "Empty line"
                normalize --version | sed -e 's/normalize/normalize-audio/g'
                ;;
        *)
                normalize $*
                ;;
esac
###

Best regards
Raúl.





More information about the pkg-kde-extras mailing list