cpudyn: dropped

This commit is contained in:
Juergen Daubert 2012-10-18 14:29:52 +02:00
parent e6c8820919
commit 242a066fd7
4 changed files with 0 additions and 51 deletions

View File

@ -1,9 +0,0 @@
drwxr-xr-x root/root etc/
drwxr-xr-x root/root etc/rc.d/
-rwxr-xr-x root/root etc/rc.d/cpudynd
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man8/
-rw-r--r-- root/root usr/man/man8/cpudynd.8.gz
drwxr-xr-x root/root usr/sbin/
-rwxr-xr-x root/root usr/sbin/cpudynd

View File

@ -1,2 +0,0 @@
670d32eb953f99ba04aee44848864228 cpudyn-1.0.1.tgz
00c1e28dbca7f94c2be8ac7b4eea44e7 cpudynd

View File

@ -1,17 +0,0 @@
# Description: Daemon to control the speed of mobile CPUs
# URL: http://mnm.uib.es/~gallir/cpudyn/
# Maintainer: Juergen Daubert, jue at crux dot nu
name=cpudyn
version=1.0.1
release=1
source=(http://mnm.uib.es/~gallir/cpudyn/download/$name-$version.tgz \
cpudynd)
build () {
cd $name
make
install -D -m 755 cpudynd $PKG/usr/sbin/cpudynd
install -D -m 644 cpudynd.8 $PKG/usr/man/man8/cpudynd.8
install -D -m 755 ../cpudynd $PKG/etc/rc.d/cpudynd
}

View File

@ -1,23 +0,0 @@
#!/bin/sh
#
# /etc/rc.d/cpudynd: start/stop cpudynd daemon
#
case $1 in
start)
/usr/sbin/cpudynd -d -i 1 -t 120
;;
stop)
killall -q /usr/sbin/cpudynd
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "usage: $0 [start|stop|restart]"
;;
esac
# End of file