summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorUffe Jakobsen2016-08-15 12:23:04 +0200
committerUffe Jakobsen2016-08-15 12:23:04 +0200
commit38b181a6528c486656bf215634f6f82333e8a767 (patch)
treed82afaf47ee37c8690021b82d748af8fa02e9616
parent33e90b90e3c981960caf178e929c82a0246d8580 (diff)
downloadaur-38b181a6528c486656bf215634f6f82333e8a767.tar.gz
Update to 20160814
-rw-r--r--.SRCINFO9
-rw-r--r--PKGBUILD7
2 files changed, 10 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index bc5bb7c0fa9d..d842b4d16902 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,17 +1,18 @@
# Generated by mksrcinfo v8
-# Thu Feb 4 16:53:58 UTC 2016
+# Mon Aug 15 10:21:10 UTC 2016
pkgbase = cpuid
pkgdesc = Linux tool to dump x86 CPUID information about the CPU(s)
- pkgver = 20151017
+ pkgver = 20160814
pkgrel = 1
url = http://www.etallen.com/cpuid.html
arch = i686
arch = x86_64
groups = system
license = GPL
+ makedepends = perl
depends = glibc
- source = http://www.etallen.com/cpuid/cpuid-20151017.src.tar.gz
- md5sums = 445f4674f0ca7fe10d0a24e0bd34d40d
+ source = http://www.etallen.com/cpuid/cpuid-20160814.src.tar.gz
+ md5sums = b9d32005bedbb19f9b409dbb530f5510
pkgname = cpuid
diff --git a/PKGBUILD b/PKGBUILD
index 7d93c5292fe7..5cb9acd599b5 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,20 +3,23 @@
# Contributor: David Zaragoza <david@zaragoza.com.ve>
pkgname=cpuid
-pkgver=20151017
+pkgver=20160814
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')
groups=('system')
source=("http://www.etallen.com/$pkgname/$pkgname-$pkgver.src.tar.gz")
-md5sums=('445f4674f0ca7fe10d0a24e0bd34d40d')
+md5sums=('b9d32005bedbb19f9b409dbb530f5510')
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
}