CRUX PPC
A lightweight GNU/Linux distribution for PowerPC!
Subversion Repository
Parent Directory
|
Revision Log
Revision 632 -
(show annotations)
Sun Oct 4 15:05:11 2009 UTC (3 years, 8 months ago) by cjg
File size: 704 byte(s)
Sun Oct 4 15:05:11 2009 UTC (3 years, 8 months ago) by cjg
File size: 704 byte(s)
pseries utils initial commit
| 1 | # Description: watchdog - a software watchdog daemon |
| 2 | # URL: http://www.debian.org/ |
| 3 | # Maintainer: acrux, acrux at linuxmail dot org |
| 4 | # Depends on: |
| 5 | |
| 6 | name=watchdog |
| 7 | version=5.6 |
| 8 | release=1 |
| 9 | source=(http://ftp.debian.org/debian/pool/main/w/watchdog/$name\_$version.orig.tar.gz \ |
| 10 | http://ftp.debian.org/debian/pool/main/w/watchdog/$name\_$version-1.diff.gz \ |
| 11 | rc.watchdog rc.wd_keepalive) |
| 12 | |
| 13 | build() { |
| 14 | cd $name-$version |
| 15 | zcat ../$name\_$version-1.diff.gz | patch -p1 |
| 16 | |
| 17 | ./configure --prefix=/usr --mandir=/usr/man \ |
| 18 | --disable-debug |
| 19 | |
| 20 | make |
| 21 | make DESTDIR=$PKG install |
| 22 | install -D -m 0755 $SRC/rc.watchdog $PKG/etc/rc.d/watchdog |
| 23 | install -D -m 0755 $SRC/rc.wd_keepalive $PKG/etc/rc.d/wd_keepalive |
| 24 | } |