mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
518a50b30b
Although being simple, libsdr is sufficient to write a simple SDR receiver application (github.com/hmatuschek/sdr-rx, above). This RX application supports several input sources (i.e. sound card, files, RTL2382 dongles etc.) and modes (i.e. AM, FM, SSB, CW, etc.). WWW: https://github.com/hmatuschek/libsdr PR: 207379 Submitted by: Jeffrey Baitis <baitisj@pcbsd.org>
30 lines
634 B
Makefile
30 lines
634 B
Makefile
# Created by: Jeffrey Baitis <baitisj@pcbsd.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libsdr
|
|
PORTVERSION= 0.1.0
|
|
CATEGORIES= comms hamradio
|
|
|
|
MAINTAINER= baitisj@pcbsd.org
|
|
COMMENT= Simple software defined radio (SDR) library
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libportaudio.so:${PORTSDIR}/audio/portaudio \
|
|
libfftw3.so:${PORTSDIR}/math/fftw3 \
|
|
libfftw3f.so:${PORTSDIR}/math/fftw3-float \
|
|
librtlsdr.so:${PORTSDIR}/comms/rtl-sdr
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= hmatuschek
|
|
GH_PROJECT= libsdr
|
|
GH_TAGNAME= 0982a68
|
|
|
|
MAKE_JOBS_UNSAFE= yes
|
|
USES= cmake pkgconfig
|
|
CMAKE_ARGS+=-DCMAKE_BUILD_TYPE=RELEASE
|
|
CMAKE_VERBOSE= 1
|
|
USE_LDCONFIG= yes
|
|
|
|
.include <bsd.port.mk>
|