blob: aa24f4e22f0574981552ae5a744e549b85ccd839 (
plain)
1 # Description: Daemon to control the speed of mobile CPUs
2 # URL: http://mnm.uib.es/~gallir/cpudyn/
3 # Maintainer: Jürgen Daubert, juergen dot daubert at t-online dot de
4
5 name=cpudyn
6 version=1.0.1
7 release=1
8 source=(http://mnm.uib.es/~gallir/cpudyn/download/$name-$version.tgz \
9 cpudynd)
10
11 build () {
12 cd $name
13 make
14 install -D -m 755 cpudynd $PKG/usr/sbin/cpudynd
15 install -D -m 644 cpudynd.8 $PKG/usr/man/man8/cpudynd.8
16 install -D -m 755 ../cpudynd $PKG/etc/rc.d/cpudynd
17 }
|