summaryrefslogtreecommitdiff
blob: d62dacb90048b5850ceea96c9d336396fa70df88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Copyright 1999-2021 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 '1i #!/bin/bash\nset -e' go.sh || die
}

src_install() {
	mkdir -p "${D}/lib/firmware/intel" || die
	SOF_VERSION=v${PV} ROOT=${D} ${S}/go.sh || die
}