diff options
author | Tudor Florea <tudor.florea@enea.com> | 2014-10-10 03:20:04 +0200 |
---|---|---|
committer | Tudor Florea <tudor.florea@enea.com> | 2014-10-10 03:20:04 +0200 |
commit | 1b8dfe266937a37a4c642f96ceb2347bf4c00a17 (patch) | |
tree | 0c6aab146bb3c82efd9c7846a9a4e70dcb0ec84f /meta-multimedia/recipes-multimedia/libao | |
download | meta-openembedded-daisy-140929.tar.gz |
initial commit for Enea Linux 4.0-140929daisy-140929
Migrated from the internal git server on the daisy-enea-point-release branch
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta-multimedia/recipes-multimedia/libao')
-rw-r--r-- | meta-multimedia/recipes-multimedia/libao/libao_1.1.0.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta-multimedia/recipes-multimedia/libao/libao_1.1.0.bb b/meta-multimedia/recipes-multimedia/libao/libao_1.1.0.bb new file mode 100644 index 0000000000..d2da08e420 --- /dev/null +++ b/meta-multimedia/recipes-multimedia/libao/libao_1.1.0.bb | |||
@@ -0,0 +1,30 @@ | |||
1 | SUMMARY = "Cross-platform audio output library and plugins" | ||
2 | DESCRIPTION = "Libao is a cross-platform audio library that allows programs to \ | ||
3 | output audio using a simple API on a wide variety of platforms." | ||
4 | SECTION = "multimedia" | ||
5 | HOMEPAGE = "https://www.xiph.org/ao/" | ||
6 | |||
7 | LICENSE = "GPLv2" | ||
8 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | ||
9 | |||
10 | SRC_URI="http://downloads.xiph.org/releases/ao/${BP}.tar.gz" | ||
11 | SRC_URI[md5sum] = "2b2508c29bc97e4dc218fa162cf883c8" | ||
12 | SRC_URI[sha256sum] = "29de5bb9b1726ba890455ef7e562d877df87811febb0d99ee69164b88c171bd4" | ||
13 | |||
14 | inherit autotools | ||
15 | |||
16 | PACKAGES_DYNAMIC += "^${BPN}-plugin-.*" | ||
17 | |||
18 | do_install_append () { | ||
19 | find "${D}" -name '*.la' -exec rm -f {} + | ||
20 | } | ||
21 | |||
22 | python populate_packages_prepend () { | ||
23 | rootdir = bb.data.expand('${libdir}/ao/plugins-4', d) | ||
24 | rootdir_dbg = bb.data.expand('${libdir}/ao/plugins-4/.debug', d) | ||
25 | do_split_packages(d, rootdir, '^(.*)\.so$', output_pattern='${BPN}-plugin-%s', description='AO %s plugin') | ||
26 | do_split_packages(d, rootdir_dbg, '^(.*)\.so$', output_pattern='${BPN}-plugin-%s-dbg', description='AO %s plugin debug data') | ||
27 | } | ||
28 | |||
29 | PACKAGECONFIG ?= "" | ||
30 | PACKAGECONFIG[esound] = "--enable-esd,--disable-esd,esound" | ||