diff options
Diffstat (limited to 'meta/recipes-multimedia/alsa/alsa-lib_1.1.9.bb')
-rw-r--r-- | meta/recipes-multimedia/alsa/alsa-lib_1.1.9.bb | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/alsa/alsa-lib_1.1.9.bb b/meta/recipes-multimedia/alsa/alsa-lib_1.1.9.bb new file mode 100644 index 0000000000..2c63ee7522 --- /dev/null +++ b/meta/recipes-multimedia/alsa/alsa-lib_1.1.9.bb | |||
@@ -0,0 +1,41 @@ | |||
1 | SUMMARY = "ALSA sound library" | ||
2 | HOMEPAGE = "http://www.alsa-project.org" | ||
3 | BUGTRACKER = "http://alsa-project.org/main/index.php/Bug_Tracking" | ||
4 | SECTION = "libs/multimedia" | ||
5 | LICENSE = "LGPLv2.1 & GPLv2+" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7 \ | ||
7 | file://src/socket.c;md5=dd1bc7f44872690224d89c1a9806e495;beginline=1;endline=26 \ | ||
8 | " | ||
9 | |||
10 | SRC_URI = "https://www.alsa-project.org/files/pub/lib/${BP}.tar.bz2" | ||
11 | SRC_URI[md5sum] = "e6d429dbdcfaa0f034d907fa6dc3735e" | ||
12 | SRC_URI[sha256sum] = "488373aef5396682f3a411a6d064ae0ad196b9c96269d0bb912fbdeec94b994b" | ||
13 | |||
14 | inherit autotools pkgconfig | ||
15 | |||
16 | EXTRA_OECONF += " \ | ||
17 | ${@bb.utils.contains('TARGET_FPU', 'soft', '--with-softfloat', '', d)} \ | ||
18 | --disable-python \ | ||
19 | " | ||
20 | |||
21 | PACKAGES =+ "alsa-server alsa-conf alsa-doc" | ||
22 | |||
23 | FILES_alsa-server = "${bindir}/*" | ||
24 | FILES_alsa-conf = "${datadir}/alsa/" | ||
25 | |||
26 | RDEPENDS_${PN}_class-target = "alsa-conf" | ||
27 | |||
28 | # upgrade path | ||
29 | RPROVIDES_${PN} = "libasound" | ||
30 | RREPLACES_${PN} = "libasound" | ||
31 | RCONFLICTS_${PN} = "libasound" | ||
32 | |||
33 | RPROVIDES_${PN}-dev = "alsa-dev" | ||
34 | RREPLACES_${PN}-dev = "alsa-dev" | ||
35 | RCONFLICTS_${PN}-dev = "alsa-dev" | ||
36 | |||
37 | RPROVIDES_alsa-conf = "alsa-conf-base" | ||
38 | RREPLACES_alsa-conf = "alsa-conf-base" | ||
39 | RCONFLICTS_alsa-conf = "alsa-conf-base" | ||
40 | |||
41 | BBCLASSEXTEND = "native nativesdk" | ||