e3b2bc21d5
We need to use the git download mechanism, as the package depends on a submodule (an old version of cxxopt), and this is not included in the archive autogenerated by Github. Signed-off-by: Théo Lebrun <theo.lebrun@bootlin.com> [yann.morin.1998@free.fr: - bump to 0.0.4 - reword commit log ad help text - other eye-candy reformatting ] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
18 lines
619 B
Plaintext
18 lines
619 B
Plaintext
comment "signal-estimator needs a toochain w/ C++, threads, gcc >= 7"
|
|
depends on !BR2_INSTALL_LIBSTDCPP \
|
|
|| !BR2_TOOLCHAIN_GCC_AT_LEAST_7 \
|
|
|| !BR2_TOOLCHAIN_HAS_THREADS
|
|
|
|
config BR2_PACKAGE_SIGNAL_ESTIMATOR
|
|
bool "signal-estimator"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # alsa-lib
|
|
select BR2_PACKAGE_ALSA_LIB
|
|
help
|
|
signal-estimator is a small command-line and GUI tool allowing
|
|
to measure different characteristics of the signal looped back
|
|
from audio output to audio input.
|
|
|
|
https://github.com/gavv/signal-estimator
|