diff options
author | Felix Domke <tmbinc@elitedvb.ne> | 2006-03-18 17:24:25 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-03-18 17:24:25 +0000 |
commit | b6c6575ff06b3248cadc8b24db37b4c9f532a487 (patch) | |
tree | 8ec3d6787a22e004b871a9ef5299f949c3fbadc4 /packages/dvbtools | |
parent | c6124930329ccf950761a605e372040ea569fc51 (diff) |
sctzap: add package
Diffstat (limited to 'packages/dvbtools')
-rw-r--r-- | packages/dvbtools/sctzap_cvs.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/packages/dvbtools/sctzap_cvs.bb b/packages/dvbtools/sctzap_cvs.bb new file mode 100644 index 0000000000..4d33e89f0e --- /dev/null +++ b/packages/dvbtools/sctzap_cvs.bb @@ -0,0 +1,25 @@ +DESCRIPTION = "szap, czap, tzap are command-line based tools to tune in a DVB service" +SECTION = "console/multimedia" +PRIORITY = "optional" +LICENSE = "GPLv2" +MAINTAINER = "Felix Domke <tmbinc@elitedvb.net>" +PV = "0.0cvs${CVSDATE}" + +SRC_URI = "cvs://anonymous@cvs.linuxtv.org/cvs/linuxtv;module=dvb-apps/util/szap \ + cvs://anonymous@cvs.linuxtv.org/cvs/linuxtv;module=dvb-apps/util/lib" + +S = "${WORKDIR}/szap" + +CFLAGS_append = " -I../lib " + +do_compile() { + oe_runmake szap czap tzap femon +} + +do_install() { + mkdir -p ${D}${bindir} + install -m 0755 szap ${D}${bindir}/ + install -m 0755 czap ${D}${bindir}/ + install -m 0755 tzap ${D}${bindir}/ + install -m 0755 femon ${D}${bindir}/ +} |