diff options
| author | Stefan Müller-Klieser <s.mueller-klieser@phytec.de> | 2015-08-13 12:19:14 +0200 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-08-24 13:59:43 +0200 |
| commit | ba0d87692de24a574e69269b9f1c9ad27d91454b (patch) | |
| tree | 3a30108926f7f0161e756fbc9fad91bab2573ee3 /meta-multimedia/recipes-multimedia/vorbis-tools | |
| parent | 67d903e519c7e18e8061c68d0e61b2dc6d164203 (diff) | |
| download | meta-openembedded-ba0d87692de24a574e69269b9f1c9ad27d91454b.tar.gz | |
vorbis-tools: add new recipe
Vorbis tools provide command line editing and playback tools for the
patent free audio codec. Use cases in embedded are audio tests and
performance benchmarks.
Signed-off-by: Stefan Müller-Klieser <s.mueller-klieser@phytec.de>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-multimedia/recipes-multimedia/vorbis-tools')
| -rw-r--r-- | meta-multimedia/recipes-multimedia/vorbis-tools/vorbis-tools_1.4.0.bb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/meta-multimedia/recipes-multimedia/vorbis-tools/vorbis-tools_1.4.0.bb b/meta-multimedia/recipes-multimedia/vorbis-tools/vorbis-tools_1.4.0.bb new file mode 100644 index 0000000000..de89d22a65 --- /dev/null +++ b/meta-multimedia/recipes-multimedia/vorbis-tools/vorbis-tools_1.4.0.bb | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | SUMMARY = "Vorbis Tools" | ||
| 2 | DESCRIPTION = "Ogg Vorbis is a high-quality lossy audio codec \ | ||
| 3 | that is free of intellectual property restrictions. vorbis-tools \ | ||
| 4 | include some command line applications to use the libraries." | ||
| 5 | HOMEPAGE = "http://www.vorbis.com/" | ||
| 6 | BUGTRACKER = "https://trac.xiph.org" | ||
| 7 | SECTION = "multimedia" | ||
| 8 | LICENSE = "GPLv2" | ||
| 9 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | ||
| 10 | |||
| 11 | DEPENDS = "libogg libvorbis curl libao" | ||
| 12 | |||
| 13 | SRC_URI = "http://downloads.xiph.org/releases/vorbis/${BP}.tar.gz" | ||
| 14 | |||
| 15 | SRC_URI[md5sum] = "567e0fb8d321b2cd7124f8208b8b90e6" | ||
| 16 | SRC_URI[sha256sum] = "a389395baa43f8e5a796c99daf62397e435a7e73531c9f44d9084055a05d22bc" | ||
| 17 | |||
| 18 | inherit autotools pkgconfig gettext | ||
| 19 | |||
| 20 | RDEPENDS_${PN} = "libogg libvorbis libcurl libao" | ||
| 21 | |||
| 22 | PACKAGECONFIG ??= "flac" | ||
| 23 | PACKAGECONFIG[flac] = ",--without-flac,flac,libflac" | ||
| 24 | PACKAGECONFIG[speex] = ",--without-speex,speex,speex" | ||
| 25 | |||
| 26 | EXTRA_OECONF = "--with-ogg-libraries=${STAGING_LIBDIR} \ | ||
| 27 | --with-ogg-includes=${STAGING_INCDIR} \ | ||
| 28 | --with-vorbis-libraries=${STAGING_LIBDIR} \ | ||
| 29 | --with-vorbis-includes=${STAGING_INCDIR} \ | ||
| 30 | --with-curl-libraries=${STAGING_LIBDIR} \ | ||
| 31 | --with-curl-libraries=${STAGING_LIBDIR} \ | ||
| 32 | " | ||
