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

_pkgname=n-ipv4ll
pkgname=$_pkgname-git
pkgver=2.12.g3325d12
pkgrel=2
pkgdesc="IPv4 Link-Local Address Selection"
url="https://github.com/nettools/n-ipv4ll"
license=('LGPL2.1' 'Apache')
arch=(x86_64)
depends=(glibc)
provides=("$_pkgname")
conflicts=("$_pkgname")
makedepends=(meson pkgconf)
source=("git+https://github.com/nettools/n-ipv4ll.git")
sha256sums=('SKIP')

pkgver() {
  cd $_pkgname
  git describe --tags | sed 's/^v//;s/-/./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
}