# # PKGBUILD: cpuid # # Maintainer: Uffe Jakobsen # Past Maintainer: Jianing Yang # Contributor: David Zaragoza pkgname=cpuid pkgver=20230614 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=('b1c83045efc26076307751e0662d580277f5f9bf89cf027231a7812003c3a4e8') # # # 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 #