mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
5dd084cc92
It decodes the following digital transmission modes: POCSAG512 POCSAG1200 POCSAG2400 FLEX EAS UFSK1200 CLIPFSK AFSK1200 AFSK2400 AFSK2400_2 AFSK2400_3 HAPN4800 FSK9600 DTMF ZVEI1 ZVEI2 ZVEI3 DZVEI PZVEI EEA EIA CCIR MORSE CW As an example it can be used with rtl_sdr to decode radio amateurs packets: rtl_fm -f 144.390M -s 22050 | multimon-ng -v 10 -t raw -A - WWW: https://github.com/EliasOenal/multimon-ng/ PR: 206158 Submitted by: bsdports@kyle-evans.net
13 lines
466 B
Plaintext
13 lines
466 B
Plaintext
--- CMakeLists.txt.orig 2015-11-09 12:57:23 UTC
|
|
+++ CMakeLists.txt
|
|
@@ -48,7 +48,8 @@ endif( X11_SUPPORT )
|
|
|
|
if( PULSE_AUDIO_SUPPORT )
|
|
include_directories( ${PULSEAUDIO_INCLUDE_DIR} )
|
|
- link_libraries( ${PULSEAUDIO_LIBRARY} "-lpulse-simple" )
|
|
+ find_library( PULSE_SIMPLE NAMES pulse-simple REQUIRED )
|
|
+ link_libraries( ${PULSEAUDIO_LIBRARY} ${PULSE_SIMPLE} )
|
|
add_definitions( "-DPULSE_AUDIO" )
|
|
else( PULSE_AUDIO_SUPPORT )
|
|
add_definitions( "-DDUMMY_AUDIO" )
|