summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c0ffd1c551f4dd4c02015581cd994a0574af6685 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Maintainer: Matthew McGinn <mamcgi@gmail.com>
pkgname=ptpd-git
_pkgname=ptpd
pkgrel=1
pkgver=r514.d27a6e0
pkgdesc="The PTP daemon (PTPd) implements the Precision Time protocol (PTP) as defined by the relevant IEEE 1588 standard. PTP Version 2 implements IEEE-1588-2008. PTP was developed to provide very precise time coordination of LAN connected computers."
arch=('x86_64')
url="https://github.com/ptpd/ptpd"
license=('BSD')
conflicts=('ptpd2')
depends=('libpcap')
optdepends=('net-snmp')
provides=('ptpd2')
source=("git+https://github.com/${_pkgname}/${_pkgname}")
md5sums=('SKIP')

pkgver() {
    cd "${_pkgname}"
    set -o pipefail
    git describe --long | sed -r 's/([^-]*-g)/r\1/;s/-/./g' ||
    printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
    cd "${_pkgname}"
    autoreconf -vi
    ./configure --prefix=/usr --sbindir=/usr/bin
    make
}

check() {
    cd "${_pkgname}"
    make -k check
}

package() {
    cd "${_pkgname}"
    make DESTDIR="${pkgdir}/" install
    install -D -m644 COPYRIGHT "${pkgdir}/usr/share/licenses/${pkgname}/COPYRIGHT"
}