aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dvbtools/dvbtune_cvs.bb
blob: ac3cde9a6fd0f6504008025fa0191f35456c655b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
PV = "0.0cvs${CVSDATE}"
SECTION = "console/multimedia"
PRIORITY = "optional"
LICENSE = "GPLv2"
MAINTAINER = "Phil Blundell <pb@debian.org>"
DEPENDS = "libxml2"
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}/
}