diff options
author | Steve Sakoman <steve@sakoman.com> | 2009-08-04 11:08:53 -0700 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-08-08 11:20:02 +0200 |
commit | 8e40f0f867f6c00bccb225df67598e992086eb0b (patch) | |
tree | 267e54b489ce38124c13edd1f8b16f87656bc94a /recipes/alsa | |
parent | db6f9ba936fc76e83d9f32a73ea76b17a1f797c5 (diff) |
alsa-plugins: add 1.0.20
Diffstat (limited to 'recipes/alsa')
-rw-r--r-- | recipes/alsa/alsa-plugins_1.0.20.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/recipes/alsa/alsa-plugins_1.0.20.bb b/recipes/alsa/alsa-plugins_1.0.20.bb new file mode 100644 index 0000000000..cc48e3c50b --- /dev/null +++ b/recipes/alsa/alsa-plugins_1.0.20.bb @@ -0,0 +1,22 @@ +DESCRIPTION = "ALSA Plugins" +HOMEPAGE = "http://www.alsa-project.org" +SECTION = "multimedia/alsa/plugins" +LICENSE = "GPL" +DEPENDS = "alsa-lib pulseaudio ffmpeg" +PR = "r1" + +SRC_URI = "ftp://ftp.alsa-project.org/pub/plugins/alsa-plugins-${PV}.tar.bz2" + +inherit autotools + +CFLAGS += "-lavutil" + +PACKAGES_DYNAMIC = "libasound-module*" + +python populate_packages_prepend() { + plugindir = bb.data.expand('${libdir}/alsa-lib/', d) + do_split_packages(d, plugindir, '^libasound_module_(.*)\.so$', 'libasound-module-%s', 'Alsa plugin for %s', extra_depends='' ) +} + +FILES_${PN}-dev += "${libdir}/alsa-lib/libasound*.a ${libdir}/alsa-lib/libasound*.la" +FILES_${PN}-dbg += "${libdir}/alsa-lib/.debug" |