blob: 89a5af47e177651b4fb8531fab191241f4f35f7c (
plain)
1 # Description: Network time protocol client/server
2 # URL: http://chrony.sunsite.dk/index.php
3 # Maintainer: Jürgen Daubert, juergen dot daubert at t-online dot de
4 # Depends on: ncurses, readline
5
6 name=chrony
7 version=1.23
8 release=1
9 source=(http://chrony.sunsite.dk/download/$name-$version.tar.gz \
10 chronyd chrony.conf chrony.keys)
11
12 build () {
13 cd $name-$version
14 ./configure --prefix=/usr
15 make
16 make DESTDIR=$PKG install
17
18 rm -r $PKG/usr/doc
19
20 install -d $PKG/var/{lib,log}/chrony
21 install -D -m 755 $SRC/chronyd $PKG/etc/rc.d/chronyd
22 install -m 600 $SRC/chrony.* $PKG/etc
23 }
|