summaryrefslogtreecommitdiff
path: root/community/chrony/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/chrony/PKGBUILD')
-rw-r--r--community/chrony/PKGBUILD29
1 files changed, 19 insertions, 10 deletions
diff --git a/community/chrony/PKGBUILD b/community/chrony/PKGBUILD
index 5e0d912fd..38100b693 100644
--- a/community/chrony/PKGBUILD
+++ b/community/chrony/PKGBUILD
@@ -1,30 +1,39 @@
-# $Id: PKGBUILD 65088 2012-02-20 03:35:18Z spupykin $
-# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# $Id: PKGBUILD 72784 2012-06-22 12:49:49Z dreisner $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
# Contributor: Patrick Leslie Polzer <leslie.polzer@gmx.net>
# Contributor: cdhotfire <cdhotfire@gmail.com>
# Contributor: Shinlun Hsieh <yngwiexx@yahoo.com.tw>
-# Maintainer: Elisamuel Resto <ryuji@simplysam.us>
+# Contributor: Elisamuel Resto <ryuji@simplysam.us>
pkgname=chrony
pkgver=1.26
-pkgrel=2
-pkgdesc="Dial-up friendly NTP daemon and excellent replacement for NTP on desktop systems"
+pkgrel=3
+pkgdesc='Lightweight NTP client and server'
arch=('i686' 'x86_64' 'mips64el')
url="http://chrony.tuxfamily.org/"
options=('strip')
license=('GPL')
depends=('readline' 'libcap')
backup=('etc/chrony.conf')
-source=("http://download.tuxfamily.org/chrony/${pkgname}-${pkgver}.tar.gz" \
- 'chrony')
+source=(http://download.tuxfamily.org/chrony/${pkgname}-${pkgver}.tar.gz
+ rc.d
+ service)
md5sums=('ad6dd619ff1986e4ff780363c64e2246'
- 'd8b653c8bcc76cef00aa10fbd3eeb4f7')
+ 'd8b653c8bcc76cef00aa10fbd3eeb4f7'
+ 'd78e6189c6f51a2af30a65bdedcdb2eb')
build() {
cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr
make
+}
+
+package() {
+ cd $srcdir/$pkgname-$pkgver
make DESTDIR=$pkgdir install
- install -D -m0644 $srcdir/$pkgname-$pkgver/examples/chrony.conf.example $pkgdir/etc/chrony.conf
- install -D -m0755 $srcdir/chrony $pkgdir/etc/rc.d/chrony
+
+ install -Dm0644 $srcdir/$pkgname-$pkgver/examples/chrony.conf.example $pkgdir/etc/chrony.conf
+ install -Dm0755 $srcdir/rc.d $pkgdir/etc/rc.d/chrony
+ install -Dm644 $srcdir/service $pkgdir/usr/lib/systemd/system/chrony.service
}