bcallah 1829d85049 Import comms/minimodem
ok benoit@

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, NOAA
SAME, and Caller-ID.

Minimodem can play and capture audio modem tones in real-time via the
system audio device, or in batched mode via audio files.

Minimodem can be used to transfer data between nearby computers using an
audio cable (or just via sound waves), or between remote computers using
radio, telephone, or another audio communications medium.
2014-12-20 19:31:44 +00:00

32 lines
780 B
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2014/12/20 19:31:44 bcallah Exp $
COMMENT = general-purpose software audio FSK modem
DISTNAME = minimodem-0.21
CATEGORIES = comms
HOMEPAGE = http://www.whence.com/minimodem/
MAINTAINER = Brian Callahan <bcallah@openbsd.org>
# GPLv3+
PERMIT_PACKAGE_CDROM = Yes
WANTLIB += c fftw3f m pthread pulse pulse-simple sndfile
MASTER_SITES = http://www.whence.com/minimodem/
LIB_DEPENDS = audio/libsndfile \
audio/pulseaudio \
math/fftw3,float
CONFIGURE_STYLE = gnu
CONFIGURE_ENV = CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
CONFIGURE_ARGS = --without-alsa \
--without-benchmarks \
--with-pulseaudio \
--with-sndfile
MAKE_FLAGS = LIBS="-lfftw3f -lpulse-simple -lsndfile"
.include <bsd.port.mk>