blob: 4b339746d027e6129ea8fe3f75eceb0b53189612 (
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=20101002
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 }
|