26 lines
845 B
Text
26 lines
845 B
Text
# Template file for 'intel-ucode'
|
|
pkgname=intel-ucode
|
|
version=20140122
|
|
revision=1
|
|
noarch=yes
|
|
create_wrksrc=yes
|
|
short_desc="Microcode update files for Intel CPUs"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="INTEL Software License Agreement"
|
|
homepage="http://downloadcenter.intel.com/SearchResult.aspx?lang=eng&keyword=%22microcode%22"
|
|
distfiles="http://downloadmirror.intel.com/23574/eng/microcode-${version}.tgz"
|
|
checksum=680ad2c968bc87882d157e3d29fcfcc2cd7872e3638b109659c0e52dc36ab464
|
|
|
|
only_for_archs="i686 x86_64"
|
|
|
|
do_build() {
|
|
cp ${FILESDIR}/*.c .
|
|
${CC} -Wall ${CFLAGS} -o intel-microcode2ucode intel-microcode2ucode.c
|
|
./intel-microcode2ucode ./microcode.dat
|
|
}
|
|
|
|
do_install() {
|
|
vmkdir usr/lib/firmware/intel-ucode
|
|
vcopy "intel-ucode/*" usr/lib/firmware/intel-ucode
|
|
vinstall ${FILESDIR}/LICENSE 644 usr/share/licenses/${pkgname}
|
|
}
|