PKGBUILDs/extra/cpufreqd/PKGBUILD
2009-10-09 21:23:22 -05:00

30 lines
895 B
Bash

# $Id: PKGBUILD 36633 2009-04-26 15:34:01Z andrea $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Kevin Piche <kevin@archlinux.org>
# Contributor: Manolis Tzanidakis <manolis@archlinux.org>
pkgname=cpufreqd
pkgver=2.3.4
pkgrel=1
pkgdesc="A small daemon to adjust cpu speed (and indeed voltage)"
arch=('i686' 'x86_64')
url="http://sourceforge.net/projects/cpufreqd"
license=('GPL2')
depends=('cpufrequtils')
install="$pkgname.install"
backup=(etc/cpufreqd.conf)
options=('!libtool')
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2
'cpufreqd')
md5sums=('f4193f688305566a8422dd3989667668'
'ae7b0ec1e8e9f9e7f05fb83749af4ed4')
build() {
cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr \
--sysconfdir=/etc
make || return 1
make DESTDIR=$pkgdir install
install -D -m 755 $srcdir/cpufreqd $pkgdir/etc/rc.d/cpufreqd || return 1
}