# Status: active # Tag: Jack # Type: Standalone # Category: Audio, Tool Summary: Three small command line programs: jack_fpmon, jack_check, jack_proxy Name: jack_utils Version: 0.0.1 Release: 1%{?dist} License: GPL URL: http://kokkinizita.linuxaudio.org/linuxaudio/ ExclusiveArch: x86_64 aarch64 Vendor: Audinux Distribution: Audinux Source0: https://kokkinizita.linuxaudio.org/linuxaudio/downloads/%{name}-%{version}.tar.bz2 BuildRequires: gcc gcc-c++ BuildRequires: make BuildRequires: pkgconfig(jack) %description jack_fpmon: watch an audio signal for denormals, Nan and Inf samples. jack_check: watch for discontinuities in Jack's timing info (frametime and period start times). This has been quite useful while developing zita-njbridge. jack_proxy: this just copies inputs to outputs. There are some Jack clients which autoconnect to the system:playback ports and provide no other options. There's little that can be done about those. There are some others which at least allow you to specify a client to connect to - but not to which ports. They just make a random choice and this of course fails completely when the client has multiple sets of ports with different functions. It is for these that jack-proxy can be handy. Just run a jack_proxy with the number of ports you need and connect them to your client(s). Then tell the broken app to connect to the proxy. %prep %autosetup # Force Fedora's optflags sed -i 's|-O2|%{optflags}|' source/Makefile sed -i 's|-lasound||' source/Makefile %build %set_build_flags export LDFLAGS="`pkg-config --libs-only-L jack` $LDFLAGS" pushd source %make_build popd %install mkdir -p $RPM_BUILD_ROOT%{_bindir}/ pushd source %make_install PREFIX=%{_prefix} popd %files %doc AUTHORS README %license COPYING %{_bindir}/* %changelog * Mon Oct 15 2018 Yann Collette - 0.0.1-1 - update for Fedora 29 * Fri Sep 7 2018 Yann Collette - 0.0.1-1 - initial release