mirror of
https://github.com/void-linux/void-packages.git
synced 2025-04-22 00:57:01 +02:00
21 lines
902 B
Bash
21 lines
902 B
Bash
# Template file for 'intel-ucode'
|
|
pkgname=intel-ucode
|
|
version=20250211
|
|
revision=1
|
|
archs="i686* x86_64*"
|
|
short_desc="Microcode update files for Intel CPUs"
|
|
maintainer="Daniel Martinez <danielmartinez@cock.li>"
|
|
license="custom: Proprietary"
|
|
homepage="https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files"
|
|
changelog="https://raw.githubusercontent.com/intel/Intel-Linux-Processor-Microcode-Data-Files/main/releasenote.md"
|
|
distfiles="https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/archive/refs/tags/microcode-${version}.tar.gz"
|
|
checksum=1da88b51953c9da2e20b5c94b3d7270cf87ea5babcaa56e3d6a5c9eaf11694b3
|
|
repository=nonfree
|
|
|
|
do_install() {
|
|
vmkdir usr/lib/firmware/intel-ucode
|
|
vcopy "intel-ucode/*" usr/lib/firmware/intel-ucode
|
|
vmkdir usr/lib/dracut/dracut.conf.d
|
|
echo "early_microcode=yes" >> ${DESTDIR}/usr/lib/dracut/dracut.conf.d/intel_ucode.conf
|
|
vlicense license
|
|
}
|