aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/dvbtools/dvbtune_cvs.bb
blob: 0b0715cfc2fc98012376be66e6cf4c21d6a6a14c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
SECTION = "console/multimedia"
PRIORITY = "optional"
LICENSE = "GPLv2"
DEPENDS = "libxml2"
SRCDATE = "20090621"
PV = "0.0+cvs${SRCDATE}"

SRC_URI = "cvs://anonymous@dvbtools.cvs.sourceforge.net/cvsroot/dvbtools;module=dvbtune"

S = "${WORKDIR}/dvbtune"

CFLAGS += "\$(shell xml2-config --cflags)"
LDFLAGS += "\$(shell xml2-config --libs)"

do_compile() {
	oe_runmake dvbtune xml2vdr
}

do_install() {
	mkdir -p ${D}${bindir}
	install -m 0755 dvbtune ${D}${bindir}/
	install -m 0755 xml2vdr ${D}${bindir}/
}