diff options
Diffstat (limited to 'extra/cpufrequtils/PKGBUILD')
-rw-r--r-- | extra/cpufrequtils/PKGBUILD | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/extra/cpufrequtils/PKGBUILD b/extra/cpufrequtils/PKGBUILD index 6854c2d37..5b0e00772 100644 --- a/extra/cpufrequtils/PKGBUILD +++ b/extra/cpufrequtils/PKGBUILD @@ -5,24 +5,28 @@ pkgname=cpufrequtils pkgver=008 -pkgrel=2 +pkgrel=2.1 pkgdesc="Userspace tools for the kernel cpufreq subsystem" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kernel.org/pub/linux/utils/kernel/cpufreq/cpufrequtils.html" license=('GPL') depends=('sysfsutils') backup=('etc/conf.d/cpufreq') source=("ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.bz2" 'cpufreq.rcd' - 'cpufreq.confd') + 'cpufreq.confd' + cpufrequtils-mips.patch) options=('!libtool' '!makeflags') md5sums=('c59b71c044d463896f3247e8dd83dd7e' '7f2b5085df44d2df3e7c2d0b9f6dab08' - 'baae1f2abffc6bef2bd32a8dd8263c09') + 'baae1f2abffc6bef2bd32a8dd8263c09' + 'edbe311e6813f3b395a08b7f174065c1') build() { cd "${srcdir}/${pkgname}-${pkgver}" + [ "$CARCH" = "mips64el" ] && patch -Np0 -i ${srcdir}/cpufrequtils-mips.patch + make } |