CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
openrdate: use correct leap datafile
[ports/core-arm64.git] / openrdate / Pkgfile
1 # Description: Time setting software implementing RFC 868 (inetd time) and RFC 2030 (SNTP/NTP) protocols
2 # URL: http://sourceforge.net/projects/openrdate/
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4
5 name=openrdate
6 version=1.2
7 release=3
8 source=(http://downloads.sourceforge.net/project/$name/$name/$name-$version.tar.gz/$name-$version.tar.gz
9 rdate ntpleaps.patch)
10
11 build() {
12 cd $name-$version
13 # FS1462
14 patch -p1 -i $SRC/ntpleaps.patch
15 ./configure --prefix=/usr \
16 --build=arm-unknown-linux-gnueabi
17 make
18 make DESTDIR=$PKG install
19 install -D -m 755 $SRC/rdate $PKG/etc/cron/daily/rdate
20 }