diff options
author | Michael Lauer <mickey@vanille-media.de> | 2006-07-12 17:27:30 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-07-12 17:27:30 +0000 |
commit | 6c017b0bdef75540ef6aa5d89be70928d9265e73 (patch) | |
tree | dac1a78c6065fe00d391845ce75beb610322d603 | |
parent | c6919e508e8405131736d4fa6f1f577f7afdd28a (diff) |
add libzvbi, a library that provides functions to capture and decode VBI data. It is written in plain ANSI C with few
dependencies on other tools and libraries.
-rw-r--r-- | packages/libzvbi/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/libzvbi/libzvbi_0.2.22.bb | 18 |
2 files changed, 18 insertions, 0 deletions
diff --git a/packages/libzvbi/.mtn2git_empty b/packages/libzvbi/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/libzvbi/.mtn2git_empty diff --git a/packages/libzvbi/libzvbi_0.2.22.bb b/packages/libzvbi/libzvbi_0.2.22.bb new file mode 100644 index 0000000000..74e16c6239 --- /dev/null +++ b/packages/libzvbi/libzvbi_0.2.22.bb @@ -0,0 +1,18 @@ +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" + +SRC_URI = "${SOURCEFORGE_MIRROR}/zapping/zvbi-${PV}.tar.bz2" +S = "${WORKDIR}/zvbi-${PV}" + +inherit autotools + +do_stage() { + autotools_stage_all +} + + |