summaryrefslogtreecommitdiff
path: root/meta-openvuplus/recipes-vuplus/showiframe/showiframe.bb
blob: 8a4eae1280732074a25e438241769ee16b675357 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
DESCRIPTION = "Small utilities specific to the Vuplus dvb receiver (for DVB v3)"
SECTION = "base"
PRIORITY = "optional"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://showiframe.c;md5=496e2fde81bc40a9879de703aa926fd6"

PV = "1.81"
PR = "r2"

SRC_URI = "file://showiframe.c"

S = "${WORKDIR}"

do_compile() {
        ${CC} -o showiframe showiframe.c
}

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