blob: c858301796bc86f443dece4137ada1ddf97c031e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#
# PKGBUILD: cpuid
#
# Maintainer: Uffe Jakobsen <uffe@uffe.org>
# Past Maintainer: Jianing Yang <jianingy.yang @gmail.com>
# Contributor: David Zaragoza <david@zaragoza.com.ve>
pkgname=cpuid
pkgver=20250513
pkgrel=1
pkgdesc="Linux tool to dump x86 CPUID information about the CPU(s)"
url="http://www.etallen.com/cpuid.html"
license=('GPL-2.0-only')
arch=('i686' 'x86_64')
makedepends=('perl')
depends=('glibc' 'perl')
conflicts=('msr-tools') # extra/msr-tools seems to have /usr/bin/cpuid
groups=('system')
source=("http://www.etallen.com/$pkgname/${pkgname}-${pkgver}.src.tar.gz")
sha256sums=('6f474a22b5848488e454b01a31db80eb958d55674b5339533fc0e6aeb793626b')
#
#
#
build()
{
cd "${srcdir}/${pkgname}-${pkgver}" || exit 1
# pod2man: /usr/bin/core_perl/ is not always in path - minimize error reports by setting PATH
PATH=${PATH}:/usr/bin/core_perl/
make || exit 1
}
#
#
#
package()
{
cd "${srcdir}/${pkgname}-${pkgver}" || exit 1
make BUILDROOT=${pkgdir} install || exit 1
}
#
# EOF
#
|