mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@26c91a9
This commit is contained in:
14
package/minimodem/Config.in
Normal file
14
package/minimodem/Config.in
Normal file
@@ -0,0 +1,14 @@
|
||||
config BR2_PACKAGE_MINIMODEM
|
||||
bool "minimodem"
|
||||
select BR2_PACKAGE_FFTW
|
||||
select BR2_PACKAGE_FFTW_SINGLE
|
||||
select BR2_PACKAGE_LIBSNDFILE if !BR2_PACKAGE_ALSA_LIB_PCM && !BR2_PACKAGE_PULSEAUDIO
|
||||
help
|
||||
Minimodem is a command-line program which decodes (or
|
||||
generates) audio modem tones at any specified baud rate,
|
||||
using various framing protocols. It acts a general-purpose
|
||||
software FSK modem, and includes support for various
|
||||
standard FSK protocols such as Bell103, Bell202, RTTY,
|
||||
TTY/TDD NOAA SAME, and Caller-ID.
|
||||
|
||||
http://www.whence.com/minimodem/
|
||||
2
package/minimodem/minimodem.hash
Normal file
2
package/minimodem/minimodem.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
sha256 f8cca4db8e3f284d67f843054d6bb4d88a3db5e77b26192410e41e9a06f4378e minimodem-0.24.tar.gz
|
||||
sha256 c298178753129680ef6d3112f0f8b61acc405c86c1997dfe59735257988f8b33 COPYING
|
||||
35
package/minimodem/minimodem.mk
Normal file
35
package/minimodem/minimodem.mk
Normal file
@@ -0,0 +1,35 @@
|
||||
################################################################################
|
||||
#
|
||||
# minimodem
|
||||
#
|
||||
################################################################################
|
||||
|
||||
MINIMODEM_VERSION = 0.24
|
||||
MINIMODEM_SITE = http://www.whence.com/minimodem
|
||||
MINIMODEM_LICENSE = GPL-3.0+
|
||||
MINIMODEM_LICENSE_FILES = COPYING
|
||||
|
||||
MINIMODEM_DEPENDENCIES = fftw-single host-pkgconf
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ALSA_LIB_PCM),y)
|
||||
MINIMODEM_DEPENDENCIES += alsa-lib
|
||||
MINIMODEM_CONF_OPTS += --with-alsa
|
||||
else
|
||||
MINIMODEM_CONF_OPTS += --without-alsa
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_PULSEAUDIO),y)
|
||||
MINIMODEM_DEPENDENCIES += pulseaudio
|
||||
MINIMODEM_CONF_OPTS += --with-pulseaudio
|
||||
else
|
||||
MINIMODEM_CONF_OPTS += --without-pulseaudio
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBSNDFILE),y)
|
||||
MINIMODEM_DEPENDENCIES += libsndfile
|
||||
MINIMODEM_CONF_OPTS += --with-sndfile
|
||||
else
|
||||
MINIMODEM_CONF_OPTS += --without-sndfile
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user