aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/sdr/sdrshell_svn.bb
blob: b7874ab44ee53842f0d227076289c20f549c74ca (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
DESCRIPTION = "SDR-Shell is Qt GUI for the sdr-core (DttSP) Software Defined Radio"
LICENSE = "GPLv2"

DEPENDS = "dttsp"

inherit qmake qt3x11 

SRCREV = "114"
PV = "${SRCREV}"

SRC_URI = "svn://sdr-shell.googlecode.com/svn/branches;module=sdr-shell-v2;proto=http \
"
S = "${WORKDIR}/sdr-shell-v2"

PARALLEL_MAKE = ""

do_configure_prepend() {
	rm -f ${S}/sdr-shell
}

do_compile_prepend() {
	sed -i -e s:OE_QMAKE_LINK:CXX:g ${S}/Makefile
}

do_install() {
	install -d ${D}${bindir}
	install -m 0755 ${S}/sdr-shell ${D}${bindir}
}