29 lines
691 B
Plaintext
29 lines
691 B
Plaintext
# Description: Network time protocol client/server
|
|
# URL: https://chrony-project.org/
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
# Depends on: libcap libedit ncurses
|
|
# Optional: gnutls nettle nss
|
|
|
|
name=chrony
|
|
version=4.6
|
|
release=1
|
|
source=(https://chrony-project.org/releases/$name-$version.tar.gz
|
|
chronyd)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--chronyrundir=/run/chrony \
|
|
--with-pidfile=/run/chrony/chronyd.pid \
|
|
--with-user=chrony
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
install -d -o chrony -g chrony -m 0750 $PKG/var/{lib,log}/chrony
|
|
install -D -m 0755 $SRC/chronyd $PKG/etc/rc.d/chronyd
|
|
install examples/chrony.conf.example1 $PKG/etc/chrony.conf
|
|
}
|