mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 05:49:57 +00:00
22bec3b260
Fixes
ERROR: tinyalsa-1.1.1+gitAUTOINC+8449529c7e-r0 do_package: QA Issue: tinyalsa: Files/directories were installed but not shipped in any package:
/usr/lib
/usr/lib/libtinyalsa.a
Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Cc: Andreas Müller <schnitzeltony@googlemail.com>
Acked-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
(cherry picked from commit d9f3e6dbed)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
24 lines
785 B
BlitzBasic
24 lines
785 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=dbdefe400d894b510a9de14813181d0b"
|
|
|
|
SRCREV = "8449529c7e50f432091539ba7b438e79b04059b5"
|
|
SRC_URI = "git://github.com/tinyalsa/tinyalsa \
|
|
file://0001-Use-CMAKE_INSTALL_-path-instead-of-hardcoding-bin-li.patch \
|
|
"
|
|
PV = "1.1.1+git${SRCPV}"
|
|
|
|
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 "
|