sof-firmware: update to 1.7

The installation method utilizing the go.sh script included in the tarball no longer works.
As per the issue created on the topic (thesofproject/sof-bin#38), I have used rsync to copy
the files into the correct DESTDIR directories.
This commit is contained in:
cinerea0 2021-04-13 22:16:03 -04:00 committed by Érico Nogueira Rolim
parent e21aa0d1c7
commit 07bdf3e55d
1 changed files with 10 additions and 10 deletions

View File

@ -1,23 +1,23 @@
# Template file for 'sof-firmware'
pkgname=sof-firmware
version=1.6.1
revision=2
version=1.7
revision=1
archs="i686* x86_64*"
wrksrc="sof-bin-${version}"
hostmakedepends="rsync"
depends="alsa-ucm-conf"
short_desc="Sound Open Firmware and topology binaries"
maintainer="cinerea0 <cinerea0@protonmail.com>"
license="BSD-3-Clause"
homepage="https://thesofproject.github.io/latest/index.html"
distfiles="https://github.com/thesofproject/sof-bin/archive/v${version}.tar.gz"
checksum=587b320030bc84de1aacba5d86d89ba1a4f67201baf8b9b61bb885af60643bfb
distfiles="https://github.com/thesofproject/sof-bin/archive/refs/tags/v${version}.tar.gz"
checksum=895d0199c06fc9b8bd8452fffff4f0d53134af451f63ffd1b78f04b10ef6c251
do_install() {
vmkdir usr/lib/firmware/intel/sof
vmkdir usr/lib/firmware/intel/sof-tplg
rsync -a "sof-v${version}/" "${DESTDIR}/usr/lib/firmware/intel/sof"
rsync -a "sof-tplg-v${version}/" "${DESTDIR}/usr/lib/firmware/intel/sof-tplg"
vlicense LICENCE.NXP
export ROOT="${DESTDIR}/usr"
export SOF_VERSION="v${version}"
vmkdir usr/lib/firmware/intel
./go.sh
}