diff options
author | Leon Woestenberg <leon.woestenberg@gmail.com> | 2006-12-23 14:21:44 +0000 |
---|---|---|
committer | Leon Woestenberg <leon.woestenberg@gmail.com> | 2006-12-23 14:21:44 +0000 |
commit | 3d6662c0866f0ea95ea9bc45f3871817c50414c9 (patch) | |
tree | e5cccfa26c13c1d6af16a3d1f74b51354ad77dfc /packages/libzvbi | |
parent | 7da039dea82104f22defaa39375fee6e645a378d (diff) |
Added bitbake recipe for libzvbi 0.2.24.
Diffstat (limited to 'packages/libzvbi')
-rw-r--r-- | packages/libzvbi/libzvbi_0.2.24.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/packages/libzvbi/libzvbi_0.2.24.bb b/packages/libzvbi/libzvbi_0.2.24.bb new file mode 100644 index 0000000000..c14376387b --- /dev/null +++ b/packages/libzvbi/libzvbi_0.2.24.bb @@ -0,0 +1,21 @@ +DESCRIPTION = "The Zapping VBI library, in short ZVBI, provides functions to \ +capture and decode VBI data. It is written in plain ANSI C with few dependencies \ +on other tools and libraries." +HOMEPAGE = "http://zapping.sourceforge.net/ZVBI/index.html" +LICENSE = "GPL" +SECTION = "libs/multimedia" +DEPENDS = "libpng" +PR = "r2" + +SRC_URI = "${SOURCEFORGE_MIRROR}/zapping/zvbi-${PV}.tar.bz2" +S = "${WORKDIR}/zvbi-${PV}" + +EXTRA_OECONF = "--without-x" + +inherit autotools + +do_stage() { + autotools_stage_all +} + + |