aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/dvbtools/dvbtraffic.bb
blob: b41364353def7fb351ba59a4770ec4d38e9313cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
DESCRIPTION = "dvbtraffic is a tool to display all pids on a transport stream"
SECTION = "console/multimedia"
PRIORITY = "optional"
LICENSE = "GPLv2"
PV = "0.0cvs${SRCDATE}"

SRC_URI = "cvs://anonymous@cvs.linuxtv.org/cvs/linuxtv;module=dvb-apps/util/dvbtraffic"

S = "${WORKDIR}/dvbtraffic"
CFLAGS_append = " -D PATH_MAX=128"

do_compile() {
	oe_runmake dvbtraffic
}

do_install() {
	install -d ${D}${bindir}
	install -m 0755 dvbtraffic ${D}${bindir}/
}