blob: 6e2df7d2844b8dbf7f4210ac48bd05f440c6ab29 (
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, monster dot romster at gmail dot com
4 # Packager: Danny Rawlins, monster dot romster at gmail dot com
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 }
|