blob: d5626fd943e7c19bf4d900d66d03bed4bcd791db (
plain)
1 # Description: Dumps detailed information about the CPU(s) gathered from the CPUID instruction, and also determines the exact model of CPU(s).
2 # URL: http://www.etallen.com/cpuid.html
3 # Maintainer: Danny Rawlins, crux at romster dot me
4
5 name=cpuid
6 version=20221201
7 release=1
8 source=(http://www.etallen.com/cpuid/$name-$version.src.tar.gz)
9
10 build() {
11 cd $name-$version
12 make -e CFLAGS="$CFLAGS"
13 make BUILDROOT=$PKG install
14 }
|