summaryrefslogtreecommitdiff
path: root/community/chrony
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
committerroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
commit7a65a910b77ad191d69881098c47f9b0c852d92e (patch)
tree9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/chrony
parent60da6abff6c9577a783d72865f11de7a585e912e (diff)
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/chrony')
-rw-r--r--community/chrony/PKGBUILD48
-rw-r--r--community/chrony/service11
2 files changed, 59 insertions, 0 deletions
diff --git a/community/chrony/PKGBUILD b/community/chrony/PKGBUILD
new file mode 100644
index 000000000..b6b088bee
--- /dev/null
+++ b/community/chrony/PKGBUILD
@@ -0,0 +1,48 @@
+# $Id: PKGBUILD 95307 2013-08-09 02:41:57Z thestinger $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Maintainer: Daniel Micay <danielmicay@gmail.com>
+# Contributor: 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>
+# Contributor: Elisamuel Resto <ryuji@simplysam.us>
+
+pkgname=chrony
+pkgver=1.29
+pkgrel=1
+pkgdesc='Lightweight NTP client and server'
+arch=('i686' 'x86_64')
+url="http://chrony.tuxfamily.org/"
+options=(strip emptydirs)
+license=('GPL')
+depends=('readline' 'libcap')
+backup=('etc/chrony.conf')
+source=(http://download.tuxfamily.org/chrony/${pkgname}-${pkgver}.tar.gz
+ service)
+sha256sums=('c685f072ba0663ab026a7f56870ab2c246bd97ca4629dd2e1899617bd16ad39b'
+ 'bef4305fa7e5828e1a1fd43aa8e631f22f21902f6cdc2d3b5b41a57bd9a175dc')
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+
+ install -Dm0644 "$srcdir/$pkgname-$pkgver/examples/chrony.conf.example" "$pkgdir/etc/chrony.conf"
+
+ # Arch's kernel has enhanced RTC support, make chrony use it by default
+ sed -i '/^! \(rtconutc\|rtcfile \/var\/lib\/chrony\/rtc\)$/ s/^! //' \
+ "$pkgdir/etc/chrony.conf"
+
+ mv "$pkgdir/usr/sbin/chronyd" "$pkgdir/usr/bin"
+ rmdir "$pkgdir/usr/sbin"
+
+ install -Dm644 "$srcdir/service" "$pkgdir/usr/lib/systemd/system/chrony.service"
+
+ install -dm755 "$pkgdir/usr/lib/systemd/ntp-units.d"
+ echo "$pkgname.service" > "$pkgdir/usr/lib/systemd/ntp-units.d/$pkgname.list"
+}
diff --git a/community/chrony/service b/community/chrony/service
new file mode 100644
index 000000000..3a012ffac
--- /dev/null
+++ b/community/chrony/service
@@ -0,0 +1,11 @@
+[Unit]
+Description=Chrony Network Time Daemon
+After=network.target
+
+[Service]
+Type=forking
+ExecStart=/usr/bin/chronyd
+PIDFile=/var/run/chronyd.pid
+
+[Install]
+WantedBy=multi-user.target