1
0
mirror of https://git.yoctoproject.org/poky synced 2026-07-28 07:47:21 +00:00
Files
poky/meta/recipes-multimedia/alsa/alsa-utils-alsaconf_1.0.28.bb
Cristian Iorga af35986a81 alsa-utils: upgrade to 1.0.28
Changelog:
http://www.alsa-project.org/main/index.php/Changes_v1.0.27.2_v1.0.28

0001-alsactl-don-t-let-systemd-unit-restore-the-volume-wh.patch updated.

(From OE-Core rev: b2aae7176f71772a43f19b897e09291579008ad8)

Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2014-08-31 23:40:47 +01:00

18 lines
363 B
BlitzBasic

require alsa-utils_${PV}.bb
SUMMARY = "Shell script that creates ALSA configuration files"
FILESEXTRAPATHS_prepend := "${THISDIR}/alsa-utils:"
PACKAGES = "${PN}"
RDEPENDS_${PN} += "bash"
FILES_${PN} = "${sbindir}/alsaconf"
S = "${WORKDIR}/alsa-utils-${PV}"
do_install() {
install -d ${D}${sbindir}
install -m 0755 ${S}/alsaconf/alsaconf ${D}${sbindir}/
}