diff options
author | Cristian Iorga <cristian.iorga@intel.com> | 2013-01-18 13:39:30 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-02-15 12:17:35 +0000 |
commit | a3ca3ecb93e34f9aa465e2d17c18fa68325f9e2b (patch) | |
tree | 3bcc846326dbe97e8d136842a37208589a708210 /meta/recipes-multimedia/alsa/alsa-lib_1.0.26.bb | |
parent | c96768b240de55050c54752fda3df2e4b6290ce2 (diff) | |
download | poky-a3ca3ecb93e34f9aa465e2d17c18fa68325f9e2b.tar.gz |
alsa-lib: upgrade to 1.0.26
(From OE-Core rev: 759191ee0b11231e1719bd5c66ac0afbd02e2a80)
Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/alsa/alsa-lib_1.0.26.bb')
-rw-r--r-- | meta/recipes-multimedia/alsa/alsa-lib_1.0.26.bb | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/alsa/alsa-lib_1.0.26.bb b/meta/recipes-multimedia/alsa/alsa-lib_1.0.26.bb new file mode 100644 index 0000000000..49f4486d62 --- /dev/null +++ b/meta/recipes-multimedia/alsa/alsa-lib_1.0.26.bb | |||
@@ -0,0 +1,50 @@ | |||
1 | DESCRIPTION = "Alsa sound library" | ||
2 | HOMEPAGE = "http://www.alsa-project.org" | ||
3 | BUGTRACKER = "https://bugtrack.alsa-project.org/alsa-bug/login_page.php" | ||
4 | SECTION = "libs/multimedia" | ||
5 | LICENSE = "LGPLv2.1 & GPLv2+" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=7fbc338309ac38fefcd64b04bb903e34 \ | ||
7 | file://src/socket.c;beginline=1;endline=26;md5=11ff89a8a7a4a690a5c78effe8159545" | ||
8 | |||
9 | BBCLASSEXTEND = "native nativesdk" | ||
10 | |||
11 | # configure.in sets -D__arm__ on the command line for any arm system | ||
12 | # (not just those with the ARM instruction set), this should be removed, | ||
13 | # (or replaced by a permitted #define). | ||
14 | #FIXME: remove the following | ||
15 | ARM_INSTRUCTION_SET = "arm" | ||
16 | |||
17 | PR = "r0" | ||
18 | |||
19 | SRC_URI = "ftp://ftp.alsa-project.org/pub/lib/alsa-lib-${PV}.tar.bz2 \ | ||
20 | file://fix-tstamp-declaration.patch \ | ||
21 | file://obsolete_automake_macros.patch \ | ||
22 | " | ||
23 | SRC_URI[md5sum] = "2dfa35d28471d721e592b616beedf965" | ||
24 | SRC_URI[sha256sum] = "8c9f8161603cc3db640619650401292c3e110da63429ab6938aac763319f6e7d" | ||
25 | |||
26 | inherit autotools pkgconfig | ||
27 | |||
28 | require alsa-fpu.inc | ||
29 | EXTRA_OECONF += "${@get_alsa_fpu_setting(bb, d)} " | ||
30 | |||
31 | EXTRA_OECONF = "--with-cards=pdaudiocf --with-oss=yes --disable-python" | ||
32 | |||
33 | EXTRA_OECONF_append_libc-uclibc = " --with-versioned=no " | ||
34 | |||
35 | PACKAGES =+ "alsa-server libasound alsa-conf-base alsa-conf alsa-doc alsa-dev" | ||
36 | FILES_${PN} += "${libdir}/${BPN}/smixer/*.so" | ||
37 | FILES_${PN}-dbg += "${libdir}/${BPN}/smixer/.debug" | ||
38 | FILES_${PN}-dev += "${libdir}/${BPN}/smixer/*.la" | ||
39 | FILES_libasound = "${libdir}/libasound.so.*" | ||
40 | FILES_alsa-server = "${bindir}/*" | ||
41 | FILES_alsa-conf = "${datadir}/alsa/" | ||
42 | FILES_alsa-dev += "${libdir}/pkgconfig/ /usr/include/ ${datadir}/aclocal/*" | ||
43 | FILES_alsa-conf-base = "\ | ||
44 | ${datadir}/alsa/alsa.conf \ | ||
45 | ${datadir}/alsa/cards/aliases.conf \ | ||
46 | ${datadir}/alsa/pcm/default.conf \ | ||
47 | ${datadir}/alsa/pcm/dmix.conf \ | ||
48 | ${datadir}/alsa/pcm/dsnoop.conf" | ||
49 | |||
50 | RDEPENDS_libasound = "alsa-conf-base" | ||