blob: 17b325fc84b66ca9a8a2d0ff6447be4951b0adba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# $NetBSD: Makefile,v 1.3 2015/08/09 06:25:06 wiz Exp $
DISTNAME= rtl-sdr-0.5.3
CATEGORIES= ham
MASTER_SITES= ${MASTER_SITE_GITHUB:=steve-m/}
GITHUB_PROJECT= librtlsdr
GITHUB_TAG= v0.5.3
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://sdr.osmocom.org/trac/wiki/rtl-sdr
COMMENT= Turns your Realtek RTL2832 based DVB dongle into a SDR receiver
LICENSE= gnu-gpl-v2
USE_LANGUAGES+= c c++
USE_TOOLS+= gmake
USE_CMAKE= yes
AUTO_MKDIRS= yes
## CMake Error at CMakeLists.txt:69 (message):
## LibUSB 1.0 required to compile rtl-sdr
CMAKE_ARGS+= -DLIBUSB_INCLUDE_DIR=${PREFIX}/include/libusb-1.0
CMAKE_ARG_PATH= ../
CONFIGURE_DIRS= build
SUBST_CLASSES+= destdir
SUBST_MESSAGE.destdir= Replace install destination to ${DESTDIR}
SUBST_FILES.destdir= build/cmake_install.cmake
SUBST_STAGE.destdir= pre-install
SUBST_SED.destdir= -e 's|\$${CMAKE_INSTALL_PREFIX}|${DESTDIR}\$${CMAKE_INSTALL_PREFIX}|'
pre-configure:
(cd ${WRKSRC}; ${MKDIR} build;)
do-build:
(cd ${WRKSRC}/build; ${GMAKE})
do-install:
(cd ${WRKSRC}/build; ${GMAKE} install)
.include "../../devel/libusb1/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|