diff options
| author | dv@pseudoterminal.org <dv@pseudoterminal.org> | 2013-04-09 09:58:08 +0000 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2013-04-11 11:33:38 +0200 |
| commit | 17f37f29b64c9e3d2e991827d265af570bc2b491 (patch) | |
| tree | 11489839a925abdd04f02836c54c7d105575e563 /meta-multimedia/recipes-multimedia/mpg123 | |
| parent | f5930ea4afbfb006190f7ee8afc08f939ac363c7 (diff) | |
| download | meta-openembedded-17f37f29b64c9e3d2e991827d265af570bc2b491.tar.gz | |
add recipe for mpg123, a decoder for MPEG-1 layer 1, 2, and 3
mpg123 consists of a decoder library, and a command line application.
The application can be used to playback and dump decoded mp1/mp2/mp3 files.
The library can be integrated in other applications. CPU usage is minimal.
Signed-off-by: Carlos Rafael Giani <dv@pseudoterminal.org>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-multimedia/recipes-multimedia/mpg123')
| -rw-r--r-- | meta-multimedia/recipes-multimedia/mpg123/mpg123_1.15.3.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-multimedia/recipes-multimedia/mpg123/mpg123_1.15.3.bb b/meta-multimedia/recipes-multimedia/mpg123/mpg123_1.15.3.bb new file mode 100644 index 0000000000..e2e41ea412 --- /dev/null +++ b/meta-multimedia/recipes-multimedia/mpg123/mpg123_1.15.3.bb | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | SUMMARY = "Audio decoder for MPEG-1 Layer 1/2/3" | ||
| 2 | DESCRIPTION = "The core of mpg123 is an MPEG-1 Layer 1/2/3 decoding library, which can be used by other programs. \ | ||
| 3 | mpg123 also comes with a command-line tool which can playback using ALSA, PulseAudio, OSS, and several other APIs, \ | ||
| 4 | and also can write the decoded audio to WAV." | ||
| 5 | HOMEPAGE = "http://mpg123.de/" | ||
| 6 | BUGTRACKER = "http://sourceforge.net/p/mpg123/bugs/" | ||
| 7 | SECTION = "multimedia" | ||
| 8 | |||
| 9 | LICENSE = "LGPLv2.1" | ||
| 10 | LICENSE_FLAGS = "commercial" | ||
| 11 | LIC_FILES_CHKSUM = "file://COPYING;md5=a7aa23a2b646eca38ad4eeb7a853761c" | ||
| 12 | |||
| 13 | SRC_URI = "${SOURCEFORGE_MIRROR}/mpg123/mpg123/${PV}/mpg123-${PV}.tar.bz2" | ||
| 14 | |||
| 15 | SRC_URI[md5sum] = "f734f9e2982f398a1c919475fc0b3798" | ||
| 16 | SRC_URI[sha256sum] = "b6b1aef887835f83ac3d4acb5701ae619041fc60d76548ad779a409080338df7" | ||
| 17 | |||
| 18 | S = "${WORKDIR}/mpg123-${PV}" | ||
| 19 | |||
| 20 | inherit autotools pkgconfig | ||
| 21 | |||
| 22 | EXTRA_OECONF = " \ | ||
| 23 | --enable-shared \ | ||
| 24 | ${@bb.utils.contains('TUNE_FEATURES', 'neon', '--with-cpu=neon', '', d)} \ | ||
| 25 | ${@bb.utils.contains('TUNE_FEATURES', 'altivec', '--with-cpu=altivec', '', d)} \ | ||
| 26 | ${@bb.utils.contains('DISTRO_FEATURES', 'alsa', '--with-default-audio=alsa', '', d)} \ | ||
| 27 | ${@bb.utils.contains('DISTRO_FEATURES', 'pulseaudio', '--with-default-audio=pulse', '', d)} \ | ||
| 28 | " | ||
| 29 | |||
