summaryrefslogtreecommitdiff
path: root/extra/cpufrequtils/PKGBUILD
blob: 21ffbe1cd28e7b5c5e25717927c6a017f6bd82b4 (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
# $Id: PKGBUILD 85780 2010-07-19 14:39:52Z kevin $
# Maintainer: kevin <kevin@archlinux.org>
# Contributor: phrakture <aaronmgriffin+gmail+com>
# Contributor: SpepS <dreamspepser at yahoo dot it>

pkgname=cpufrequtils
pkgver=008
pkgrel=1
pkgdesc="Userspace tools for the kernel cpufreq subsystem"
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=(http://www.kernel.org/pub/linux/utils/kernel/cpufreq/${pkgname}-${pkgver}.tar.bz2
        cpufreq.rcd
        cpufreq.confd
        cpufrequtils-mips.patch)
options=(!libtool !distcc)
md5sums=('c59b71c044d463896f3247e8dd83dd7e'
         '7f2b5085df44d2df3e7c2d0b9f6dab08'
         'baae1f2abffc6bef2bd32a8dd8263c09'
         'edbe311e6813f3b395a08b7f174065c1')

build()
{
  cd "${srcdir}/${pkgname}-${pkgver}"

  [ "$CARCH" = "mips64el" ] && patch -Np0 -i ${srcdir}/cpufrequtils-mips.patch

  make -j1
  make INSTALL="/bin/install -c" mandir=/usr/share/man DESTDIR="${pkgdir}" install

  install -D -m755 ${srcdir}/cpufreq.rcd "${pkgdir}/etc/rc.d/cpufreq"
  install -D -m644 ${srcdir}/cpufreq.confd "${pkgdir}/etc/conf.d/cpufreq"
}