summaryrefslogtreecommitdiffstats
path: root/meta-multimedia/recipes-multimedia/tinyalsa/tinyalsa_2.0.0.bb
diff options
context:
space:
mode:
authoralperak <alperyasinak1@gmail.com>2023-11-12 21:10:28 +0300
committerKhem Raj <raj.khem@gmail.com>2023-11-12 12:18:48 -0800
commit5086a9b6d1357eb7e039e57a29b5f2bead8d5679 (patch)
tree3a79047f41f239be6b7bb1a15115aa72c2ad6fcc /meta-multimedia/recipes-multimedia/tinyalsa/tinyalsa_2.0.0.bb
parent55274f650e304074783d171a406454748b2d456e (diff)
downloadmeta-openembedded-5086a9b6d1357eb7e039e57a29b5f2bead8d5679.tar.gz
tinyalsa: upgrade 1.1.1 -> 2.0.0
- CMakeList.txt patch deleted because added to the new version. Changelog: * Miscellaneous bugs fixed. * PCM plugin support. * Add CMake build support. * Add meson build support. * tinyplay can now read from stdin. * Improved versioning support for library. * Improvements to pcm actions (prepare at open time and after overrun, etc.) * Improvements/fixes to pcm_get_htimestamp(). * Fixes for the mixer percent functions. Signed-off-by: alperak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-multimedia/recipes-multimedia/tinyalsa/tinyalsa_2.0.0.bb')
-rw-r--r--meta-multimedia/recipes-multimedia/tinyalsa/tinyalsa_2.0.0.bb22
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-multimedia/recipes-multimedia/tinyalsa/tinyalsa_2.0.0.bb b/meta-multimedia/recipes-multimedia/tinyalsa/tinyalsa_2.0.0.bb
new file mode 100644
index 0000000000..e261611afd
--- /dev/null
+++ b/meta-multimedia/recipes-multimedia/tinyalsa/tinyalsa_2.0.0.bb
@@ -0,0 +1,22 @@
1DESCRIPTION = "TinyALSA is a small library to interface with ALSA in \
2the Linux kernel. It is a lightweight alternative to libasound."
3HOMEPAGE = "https://github.com/tinyalsa/tinyalsa"
4SECTION = "libs/multimedia"
5
6LICENSE = "BSD-3-Clause"
7LIC_FILES_CHKSUM = "file://NOTICE;md5=e04cd6fa58488e016f7fb648ebea1db4"
8
9SRCREV = "1c5fb68ced57d838f2b7ecd0c00bc1fefc9ab60d"
10SRC_URI = "git://github.com/tinyalsa/tinyalsa;branch=master;protocol=https \
11 file://0001-fixed-compilation-error-caused-by-strncpy.patch \
12 "
13
14S = "${WORKDIR}/git"
15
16inherit cmake
17
18# tinyalsa is built as a static library. Enable PIC to avoid relocation
19# errors like these:
20#
21# unresolvable R_AARCH64_ADR_PREL_PG_HI21 relocation against symbol `stderr@@GLIBC_2.17'
22CFLAGS += " -fPIC -DPIC "