summaryrefslogtreecommitdiffstats
path: root/meta-multimedia/recipes-multimedia/libao
diff options
context:
space:
mode:
authorTudor Florea <tudor.florea@enea.com>2014-10-10 03:20:04 +0200
committerTudor Florea <tudor.florea@enea.com>2014-10-10 03:20:04 +0200
commit1b8dfe266937a37a4c642f96ceb2347bf4c00a17 (patch)
tree0c6aab146bb3c82efd9c7846a9a4e70dcb0ec84f /meta-multimedia/recipes-multimedia/libao
downloadmeta-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.bb30
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 @@
1SUMMARY = "Cross-platform audio output library and plugins"
2DESCRIPTION = "Libao is a cross-platform audio library that allows programs to \
3 output audio using a simple API on a wide variety of platforms."
4SECTION = "multimedia"
5HOMEPAGE = "https://www.xiph.org/ao/"
6
7LICENSE = "GPLv2"
8LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
9
10SRC_URI="http://downloads.xiph.org/releases/ao/${BP}.tar.gz"
11SRC_URI[md5sum] = "2b2508c29bc97e4dc218fa162cf883c8"
12SRC_URI[sha256sum] = "29de5bb9b1726ba890455ef7e562d877df87811febb0d99ee69164b88c171bd4"
13
14inherit autotools
15
16PACKAGES_DYNAMIC += "^${BPN}-plugin-.*"
17
18do_install_append () {
19 find "${D}" -name '*.la' -exec rm -f {} +
20}
21
22python 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
29PACKAGECONFIG ?= ""
30PACKAGECONFIG[esound] = "--enable-esd,--disable-esd,esound"