blob: dc693b78ded77a8bbe6a3fa167a87a5058e9a138 (
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
|
require gnuradio.inc
DEFAULT_PREFERENCE = "-1"
DEPENDS += " gsl "
PV = "3.2.0+svnr${SRCREV}"
PR = "${INC_PR}.1"
EXTRA_OECONF += "--with-boost=${STAGING_DIR_TARGET}/usr CXXFLAGS=-DBOOST_SP_USE_PTHREADS --disable--usrp2"
SRC_URI = "svn://gnuradio.org/svn/gnuradio/;module=trunk;proto=http \
file://no-usrp2.patch;patch=1 \
file://gnuradio-neon.patch;patch=1;pnum=0 \
${SOURCEFORGE_MIRROR}/libusb/libusb-0.1.12.tar.gz \
"
S="${WORKDIR}/trunk"
#do_configure() {
# ./bootstrap
# oe_runconf
#}
do_compile_append() {
sed -i -e s:${STAGING_DIR_TARGET}::g \
-e s:/${TARGET_SYS}::g \
gnuradio-core/gnuradio-core.pc
}
|