2006-02-24 08:01:50 +00:00
|
|
|
# Description: Network time protocol client/server
|
2009-10-26 14:02:33 +01:00
|
|
|
# URL: http://chrony.tuxfamily.org/
|
2011-02-02 13:44:37 +01:00
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
2020-10-09 14:18:04 +02:00
|
|
|
# Depends on: libcap
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=chrony
|
2020-10-09 14:18:04 +02:00
|
|
|
version=4.0
|
2017-01-18 15:43:40 +01:00
|
|
|
release=1
|
2009-10-26 14:02:33 +01:00
|
|
|
source=(http://download.tuxfamily.org/$name/$name-$version.tar.gz
|
2015-12-02 12:09:08 +01:00
|
|
|
chronyd)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build () {
|
|
|
|
cd $name-$version
|
2015-10-19 12:22:18 +02:00
|
|
|
|
2016-11-25 17:51:29 +01:00
|
|
|
./configure --prefix=/usr --with-user=chrony
|
|
|
|
|
2006-02-23 15:26:10 +00:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
2016-11-25 17:51:29 +01:00
|
|
|
install -d -o chrony -g chrony -m 0750 $PKG/var/{lib,log,run}/chrony
|
2015-12-02 12:09:08 +01:00
|
|
|
install -D -m 0755 $SRC/chronyd $PKG/etc/rc.d/chronyd
|
|
|
|
install examples/chrony.conf.example1 $PKG/etc/chrony.conf
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|