summaryrefslogblamecommitdiff
path: root/experimental/ntp/APKBUILD
blob: b389caf4797c88e8ce916f5cae828eb31c654cdc (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12

                                       
                                                                                                              
                                                                                                                      







                                               
                                                  
                                       
                                                                                                    











                                          
                                          

















                                                                                                                                                                  
# Contributor: Dan Theisen <djt@hxx.in>
# Maintainer: Dan Theisen <djt@hxx.in>
# TODO: split oneoff client packages to subpackage, add openrc subpackage, add sample config with no listeners
# Notes: This package fails to build on multiple architectures, also autokey is nonstandard and uses weak cryptography
pkgname=ntp
pkgver=4.2.8p11
pkgrel=0
pkgdesc="an implementation of RFC-5905 (NTPv4)"
url="http://www.ntp.org/"
arch="all"
license="BSD-2-Clause"
depends=""
makedepends="openssl-dev libedit-dev libevent-dev"
subpackages="$pkgname-dbg $pkgname-doc"
source="http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/$pkgname-${pkgver%.*}/$pkgname-$pkgver.tar.gz"
builddir="$srcdir/$pkgname-$pkgver"

build() {
	cd "$builddir"
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--localstatedir=/var \
		--with-lineeditlibs=edit \
		--enable-system-libevent \
		--enable-debugging \
		--enable-ipv6 \
		--with-crypto \
		--enable-autokey
	make
}

check() {
	cd "$builddir"
	make check
}

package() {
	cd "$builddir"
	make DESTDIR="$pkgdir" install
}

sha512sums="05ac60f15a6aac50aaf340d40e4e439a421fa6e3d897bf30a69b2cef0cc97f8a6956012bfc6ceba055f4c3485a24f7fb8ebbd055e1875f1c69cbfdc35e71f236  ntp-4.2.8p11.tar.gz"