1
0
mirror of https://github.com/dguglielmi/sunny-overlay.git synced 2025-12-06 13:52:40 +01:00

sys-firmware/sof-firmware: add sof-firmware 1.6.1

This commit is contained in:
2020-12-26 15:10:57 +01:00
parent d26ba5bdd4
commit 7a5d61efb4
2 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
DIST sof-firmware-1.6.1.tar.gz 2380019 BLAKE2B 32b9808d0bead2c4d099af9de1f7733bd74298ab8b41ec4d30ecef4ed76b33d43939be6068e8b5c06569530f6829a30c792460634f20835312e62dc364f83a97 SHA512 d6f62b671de3d31c7ef2ee0c0b9696f59d6e3eba962dee116073e44213a4da8d22917349011eca52ed5ee9d0872e1d2e81f30bec825edd6d02257d07d7ec1977
EBUILD sof-firmware-1.6.1.ebuild 699 BLAKE2B 76ddb0a758a89fb28716c9b8a5bd02d145d886b54707a841b50985df34fd317ac1cb7fc4e6e7e489d7e85d6a36be918f74dd4fad01805781877857d192793e7f SHA512 94aa93ea84e9bfbacc89116d2ac0235084fb4ea718f528e4eb62f7f2f63465692f85381f7c9b58f5a051841d9b3d0d5deb339503afc138949831c9afb6d737db

View File

@@ -0,0 +1,27 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Sound Open Firmware (SOF) binary files"
HOMEPAGE="https://www.sofproject.org https://github.com/thesofproject/sof https://github.com/thesofproject/sof-bin"
SRC_URI="https://github.com/thesofproject/sof-bin/archive/stable-v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
S=${WORKDIR}/sof-bin-stable-v${PV}
src_compile() {
sed -i -e '2i set -e\n' go.sh || die
# fix missing sof-jsl from v1.6.1
sed -i -e '/sof-jsl.ri$/d' go.sh || die
}
src_install() {
mkdir -p ${D}/lib/firmware || die
SOF_VERSION=v${PV} ROOT=${D} ${S}/go.sh || die
}