diff options
author | Tanu Kaskinen <tanuk@iki.fi> | 2017-01-20 11:26:28 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-23 12:05:21 +0000 |
commit | 12106c68cd6eb10ad79eea4076d4ea80742c47c6 (patch) | |
tree | f6e423cb7cbbf265f864b005e3f1eaffc852b525 /meta/recipes-multimedia/alsa/alsa-tools_1.1.3.bb | |
parent | 0af7715cbb0d5814d07562bb75e9a57d330ed97e (diff) | |
download | poky-12106c68cd6eb10ad79eea4076d4ea80742c47c6.tar.gz |
alsa-tools: 1.1.0 -> 1.1.3
Drop 0001-Cus428Midi-Explicitly-cast-constant-to-char-type.patch,
because the new release has an equivalent fix (and that's actually the
only change in the new release).
(From OE-Core rev: df748d5b9f1cc0166cb8de5d770e001171cc3926)
Signed-off-by: Tanu Kaskinen <tanuk@iki.fi>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/alsa/alsa-tools_1.1.3.bb')
-rw-r--r-- | meta/recipes-multimedia/alsa/alsa-tools_1.1.3.bb | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/alsa/alsa-tools_1.1.3.bb b/meta/recipes-multimedia/alsa/alsa-tools_1.1.3.bb new file mode 100644 index 0000000000..9e97c0e969 --- /dev/null +++ b/meta/recipes-multimedia/alsa/alsa-tools_1.1.3.bb | |||
@@ -0,0 +1,41 @@ | |||
1 | SUMMARY = "Advanced tools for certain ALSA sound card drivers" | ||
2 | HOMEPAGE = "http://www.alsa-project.org" | ||
3 | BUGTRACKER = "http://alsa-project.org/main/index.php/Bug_Tracking" | ||
4 | SECTION = "console/utils" | ||
5 | LICENSE = "GPLv2 & LGPLv2+" | ||
6 | DEPENDS = "alsa-lib ncurses glib-2.0" | ||
7 | |||
8 | LIC_FILES_CHKSUM = "file://hdsploader/COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ | ||
9 | file://ld10k1/COPYING.LIB;md5=7fbc338309ac38fefcd64b04bb903e34" | ||
10 | |||
11 | SRC_URI = "ftp://ftp.alsa-project.org/pub/tools/${BP}.tar.bz2 \ | ||
12 | file://autotools.patch \ | ||
13 | ${@bb.utils.contains('DISTRO_FEATURES', 'x11', '', 'file://makefile_no_gtk.patch', d)} \ | ||
14 | file://gitcompile_hdajacksensetest \ | ||
15 | file://0001-as10k1-Make-output_tram_line-static-inline.patch \ | ||
16 | " | ||
17 | |||
18 | SRC_URI[md5sum] = "b23eaae687d55410b92587c2053b301f" | ||
19 | SRC_URI[sha256sum] = "d88f1dcd6872121383eded5fa24e328e68c54e527db4547e1435d5eabc2b6709" | ||
20 | |||
21 | inherit autotools-brokensep pkgconfig | ||
22 | |||
23 | CLEANBROKEN = "1" | ||
24 | |||
25 | EXTRA_OEMAKE += "GITCOMPILE_ARGS='--host=${HOST_SYS} --build=${BUILD_SYS} --target=${TARGET_SYS} --with-libtool-sysroot=${STAGING_DIR_HOST} --prefix=${prefix}'" | ||
26 | |||
27 | PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'gtk+', '', d)}" | ||
28 | PACKAGECONFIG[gtk+] = ",,gtk+ gtk+3," | ||
29 | |||
30 | # configure.ac/.in doesn't exist so force copy | ||
31 | AUTOTOOLS_COPYACLOCAL = "1" | ||
32 | |||
33 | do_compile_prepend () { | ||
34 | #Automake dir is not correctly detected in cross compilation case | ||
35 | export AUTOMAKE_DIR="$(automake --print-libdir)" | ||
36 | export ACLOCAL_FLAGS="--system-acdir=${ACLOCALDIR}/ ${ACLOCALEXTRAPATH}" | ||
37 | |||
38 | cp ${WORKDIR}/gitcompile_hdajacksensetest ${S}/hdajacksensetest/gitcompile | ||
39 | } | ||
40 | |||
41 | FILES_${PN} += "${datadir}/ld10k1" | ||