blob: 940dd2d58e820b227a0f8ebae5b66d9eeb08f7b6 (
plain)
1 # Description: Retrieves the date and time from another machine on your network (RFC 868)
2 # URL: ftp://people.redhat.com/sopwith/
3 # Maintainer: Per Lidén <per@fukt.bth.se>
4
5 name=rdate
6 version=1.4
7 release=1
8 source=(ftp://people.redhat.com/sopwith/$name-$version.tar.gz rdate)
9
10 build() {
11 cd $name-$version
12 make CFLAGS="$CFLAGS"
13 install -D -m 755 rdate $PKG/usr/bin/rdate
14 install -D -m 755 ../rdate $PKG/etc/cron/daily/rdate
15 install -D -m 644 rdate.1 $PKG/usr/man/man1/rdate.1
16 }
|