diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-11-01 13:17:54 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-11-01 13:17:54 +0000 |
commit | ceb276212455fa547f6fd86a016ee2ba70c336a0 (patch) | |
tree | fc87e0fbb75ce8bca606e795b30b59732e4edb8e /meta/packages/alsa/alsa-lib_1.0.15.bb | |
parent | d6e11d1b5b32d4d032ef49c02f03bc2560b64c8f (diff) | |
download | poky-ceb276212455fa547f6fd86a016ee2ba70c336a0.tar.gz |
alsa: upgrade to 1.0.15
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3055 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/alsa/alsa-lib_1.0.15.bb')
-rw-r--r-- | meta/packages/alsa/alsa-lib_1.0.15.bb | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/meta/packages/alsa/alsa-lib_1.0.15.bb b/meta/packages/alsa/alsa-lib_1.0.15.bb new file mode 100644 index 0000000000..60b44dbc8e --- /dev/null +++ b/meta/packages/alsa/alsa-lib_1.0.15.bb | |||
@@ -0,0 +1,44 @@ | |||
1 | DESCRIPTION = "Alsa sound library" | ||
2 | HOMEPAGE = "http://www.alsa-project.org" | ||
3 | SECTION = "libs/multimedia" | ||
4 | LICENSE = "GPL" | ||
5 | |||
6 | # configure.in sets -D__arm__ on the command line for any arm system | ||
7 | # (not just those with the ARM instruction set), this should be removed, | ||
8 | # (or replaced by a permitted #define). | ||
9 | #FIXME: remove the following | ||
10 | ARM_INSTRUCTION_SET = "arm" | ||
11 | |||
12 | SRC_URI = "ftp://ftp.alsa-project.org/pub/lib/alsa-lib-${PV}.tar.bz2 \ | ||
13 | file://fix-tstamp-declaration.patch;patch=1" | ||
14 | |||
15 | inherit autotools pkgconfig | ||
16 | |||
17 | require alsa-fpu.inc | ||
18 | EXTRA_OECONF += "${@get_alsa_fpu_setting(bb, d)} " | ||
19 | |||
20 | EXTRA_OECONF = "--with-cards=pdaudiocf --with-oss=yes --disable-python" | ||
21 | |||
22 | do_stage () { | ||
23 | oe_libinstall -so -C src libasound ${STAGING_LIBDIR}/ | ||
24 | install -d ${STAGING_INCDIR}/alsa/sound | ||
25 | install -m 0644 include/*.h ${STAGING_INCDIR}/alsa/ | ||
26 | install -m 0644 include/sound/ainstr*.h ${STAGING_INCDIR}/alsa/sound/ | ||
27 | install -d ${STAGING_DATADIR}/aclocal | ||
28 | install -m 0644 utils/alsa.m4 ${STAGING_DATADIR}/aclocal/ | ||
29 | } | ||
30 | |||
31 | PACKAGES =+ "alsa-server libasound alsa-conf-base alsa-conf alsa-doc alsa-dev" | ||
32 | FILES_${PN}-dbg += "${libdir}/alsa-lib/*/.debu*" | ||
33 | FILES_libasound = "${libdir}/libasound.so.*" | ||
34 | FILES_alsa-server = "${bindir}/*" | ||
35 | FILES_alsa-conf = "${datadir}/alsa/" | ||
36 | FILES_alsa-dev += "${libdir}/pkgconfig/ /usr/include/ ${datadir}/aclocal/*" | ||
37 | FILES_alsa-conf-base = "\ | ||
38 | ${datadir}/alsa/alsa.conf \ | ||
39 | ${datadir}/alsa/cards/aliases.conf \ | ||
40 | ${datadir}/alsa/pcm/default.conf \ | ||
41 | ${datadir}/alsa/pcm/dmix.conf \ | ||
42 | ${datadir}/alsa/pcm/dsnoop.conf" | ||
43 | |||
44 | RDEPENDS_libasound = "alsa-conf-base" | ||