diff options
author | Mark Farrugia <mark.farrugia@fiberdyne.com.au> | 2019-01-30 12:46:39 +1100 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2019-02-12 11:39:32 +0000 |
commit | cdbd23d724c1752c68032b325efee8c9c4e18f4c (patch) | |
tree | 97cea53d2744f3affe3b717ae79aa8ca463dda8b /meta-audio-4a-framework/recipes-multimedia | |
parent | baf2330f4112a95254601973eb500140b8025b5b (diff) |
Add recipe for libavirt
The libavirt library is used to interface with the ALSA Virtual
sound driver (AVIRT) from user-space. Users can dynamically
create audio streams and PCMs from user-space using this
utility.
Change-Id: Ib294911722c8fd1a064022bafd2c1123c0869b92
Signed-off-by: Mark Farrugia <mark.farrugia@fiberdyne.com.au>
Diffstat (limited to 'meta-audio-4a-framework/recipes-multimedia')
-rw-r--r-- | meta-audio-4a-framework/recipes-multimedia/libavirt/libavirt_git.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta-audio-4a-framework/recipes-multimedia/libavirt/libavirt_git.bb b/meta-audio-4a-framework/recipes-multimedia/libavirt/libavirt_git.bb new file mode 100644 index 00000000..19b3bdee --- /dev/null +++ b/meta-audio-4a-framework/recipes-multimedia/libavirt/libavirt_git.bb @@ -0,0 +1,19 @@ +SUMMARY = "AVIRT user-space library" +DESCRIPTION = "ALSA Virtual Dynamic Sound Driver (AVIRT) user-space library for dynamic sound stream creation." +HOMEPAGE = "https://git.automotivelinux.org/src/libavirt/" +SECTION = "libs/multimedia" + +LICENSE = "GPL-2.0" +LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6" + +SRC_URI = "git://gerrit.automotivelinux.org/gerrit/src/libavirt;protocol=https;branch=${AGL_BRANCH}" +SRCREV = "3205195333eb1435bdef8257e0d122c25d0b7e6f" + +PV = "0.1+git${SRCPV}" +S = "${WORKDIR}/git" + +DEPENDS = "alsa-lib" + +inherit cmake + +ALLOW_EMPTY_${PN} = "1" |