X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_openvuplus;a=blobdiff_plain;f=meta-openvuplus%2Frecipes-vuplus%2Fshowiframe%2Fshowiframe.bb;fp=meta-openvuplus%2Frecipes-vuplus%2Fshowiframe%2Fshowiframe.bb;h=8a4eae1280732074a25e438241769ee16b675357;hp=0000000000000000000000000000000000000000;hb=002baca6f449e7e96563300dd3bd8a4647c0b204;hpb=5291d60e4531f5f31824f1aceab5b99229722131 diff --git a/meta-openvuplus/recipes-vuplus/showiframe/showiframe.bb b/meta-openvuplus/recipes-vuplus/showiframe/showiframe.bb new file mode 100755 index 0000000..8a4eae1 --- /dev/null +++ b/meta-openvuplus/recipes-vuplus/showiframe/showiframe.bb @@ -0,0 +1,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}/ +}