diff options
Diffstat (limited to 'meta/recipes-multimedia/alsa/alsa-tools_1.0.28.bb')
-rw-r--r-- | meta/recipes-multimedia/alsa/alsa-tools_1.0.28.bb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/alsa/alsa-tools_1.0.28.bb b/meta/recipes-multimedia/alsa/alsa-tools_1.0.28.bb new file mode 100644 index 0000000000..4b9509e863 --- /dev/null +++ b/meta/recipes-multimedia/alsa/alsa-tools_1.0.28.bb | |||
@@ -0,0 +1,35 @@ | |||
1 | SUMMARY = "Advanced tools for certain ALSA sound card drivers" | ||
2 | HOMEPAGE = "http://www.alsa-project.org" | ||
3 | BUGTRACKER = "https://bugtrack.alsa-project.org/alsa-bug/login_page.php" | ||
4 | SECTION = "console/utils" | ||
5 | LICENSE = "GPLv2 & LGPLv2+" | ||
6 | DEPENDS = "alsa-lib ncurses" | ||
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', '', \ | ||
14 | 'file://makefile_no_gtk.patch', d)}" | ||
15 | |||
16 | SRC_URI[md5sum] = "e6c929175d8ee729c06d49b51439bad6" | ||
17 | SRC_URI[sha256sum] = "76e59711c6d0f39cbddce83ce1ed8da00bad112fee021f94fa990d8685cc3761" | ||
18 | |||
19 | inherit autotools-brokensep pkgconfig | ||
20 | |||
21 | EXTRA_OEMAKE += "GITCOMPILE_ARGS='--host=${HOST_SYS} --build=${BUILD_SYS} --target=${TARGET_SYS} --with-libtool-sysroot=${STAGING_DIR_HOST} --prefix=${prefix}'" | ||
22 | |||
23 | PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'gtk+', '', d)}" | ||
24 | PACKAGECONFIG[gtk+] = ",,gtk+ gtk+3," | ||
25 | |||
26 | # configure.ac/.in doesn't exist so force copy | ||
27 | AUTOTOOLS_COPYACLOCAL = "1" | ||
28 | |||
29 | do_compile_prepend () { | ||
30 | #Automake dir is not correctly detected in cross compilation case | ||
31 | export AUTOMAKE_DIR="$(automake --print-libdir)" | ||
32 | export ACLOCAL_FLAGS="--system-acdir=${ACLOCALDIR}/" | ||
33 | } | ||
34 | |||
35 | FILES_${PN} += "${datadir}/ld10k1" | ||