summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a30d6b9740f1a6a53d7b510dd1e33272a4c7f99e (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
# Maintainer: Gabriel Rauter <rauter.gabriel@gmail.com>

pkgname=n-acd
pkgver=1+12+ga409492
pkgrel=1
pkgdesc="IPv4 Address Conflict Detection"
url="https://github.com/nettools/n-acd"
license=('LGPL2.1' 'Apache')
arch=(x86_64)
depends=(glibc)
makedepends=(meson pkgconf)
_tag=a40949267923c45cb232fa4c1d60eafacee4b36e #20180929
source=("git+https://github.com/nettools/n-acd.git#commit=$_commit")
sha256sums=('SKIP')

pkgver() {
  cd $pkgname
  git describe --tags | sed 's/^v//g; s/-/+/g'
}

build() {
  rm -rf build
  arch-meson $pkgname build
  ninja -C build
}

check() {
  meson test -C build
}

package() {
  DESTDIR="$pkgdir" meson install -C build
}