# # PKGBUILD: cpuid # # Maintainer: Uffe Jakobsen # Past Maintainer: Jianing Yang # Contributor: David Zaragoza pkgname=cpuid pkgver=20211210 pkgrel=1 pkgdesc="Linux tool to dump x86 CPUID information about the CPU(s)" url="http://www.etallen.com/cpuid.html" license=('GPL') arch=('i686' 'x86_64') makedepends=('perl') depends=('glibc' 'perl') groups=('system') source=("http://www.etallen.com/$pkgname/${pkgname}-${pkgver}.src.tar.gz") sha256sums=('e029895700de1a6f83360252804892cd58b54d1f5ff3af44b7bb6afe410e5f44') # # # 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 #