blob: 06552975c8f945f3ca3dade96fbb2f853fa77c1e (
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 # Packager: Danny Rawlins, crux at romster dot me
5
6 name=cpuid
7 version=20130610
8 release=1
9 source=(http://www.etallen.com/cpuid/$name-$version.src.tar.gz)
10
11 build() {
12 cd $name-$version
13 sed -i -e 's|/share/man|/man|g' Makefile
14 make -e CFLAGS="$CFLAGS"
15 make BUILDROOT=$PKG install
16 }
|