- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
23 lines
776 B
BlitzBasic
23 lines
776 B
BlitzBasic
DESCRIPTION = "TinyALSA is a small library to interface with ALSA in \
|
|
the Linux kernel. It is a lightweight alternative to libasound."
|
|
HOMEPAGE = "https://github.com/tinyalsa/tinyalsa"
|
|
SECTION = "libs/multimedia"
|
|
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://NOTICE;md5=e04cd6fa58488e016f7fb648ebea1db4"
|
|
|
|
SRCREV = "1c5fb68ced57d838f2b7ecd0c00bc1fefc9ab60d"
|
|
SRC_URI = "git://github.com/tinyalsa/tinyalsa;branch=master;protocol=https \
|
|
file://0001-fixed-compilation-error-caused-by-strncpy.patch \
|
|
"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit cmake
|
|
|
|
# tinyalsa is built as a static library. Enable PIC to avoid relocation
|
|
# errors like these:
|
|
#
|
|
# unresolvable R_AARCH64_ADR_PREL_PG_HI21 relocation against symbol `stderr@@GLIBC_2.17'
|
|
CFLAGS += " -fPIC -DPIC "
|