blob: 1ee00b5499fcbc3af5a8c926faff290af6ba018d (
plain) (
tree)
|
|
# Contributor: Luis Ressel <aranea@aixah.de>
# Maintainer: Luis Ressel <aranea@aixah.de>
pkgname=wireguard-tools
_pkgreal=WireGuard
pkgver=0.0.20191012
pkgrel=0
pkgdesc="Userland tools for the WireGuard VPN"
url="https://www.wireguard.com/"
arch="all"
options="!check" # no test suite
license="GPL-2.0-only"
depends="bash iproute2"
makedepends="libmnl-dev"
subpackages="$pkgname-bash-completion:bashcomp:noarch $pkgname-doc wireguard-patch:_patch:noarch"
source="https://git.zx2c4.com/WireGuard/snapshot/$_pkgreal-$pkgver.tar.xz"
builddir="$srcdir/$_pkgreal-$pkgver"
build() {
cd "$builddir"
make RUNSTATEDIR=/run -C src/tools
}
package() {
cd "$builddir"
make WITH_BASHCOMPLETION=yes WITH_WGQUICK=yes DESTDIR="$pkgdir" -C src/tools install
}
bashcomp() {
depends="$pkgname"
pkgdesc="$pkgdesc (Bash completion)"
mkdir -p "$subpkgdir/usr/share"
mv "$pkgdir/usr/share/bash-completion" "$subpkgdir/usr/share/"
}
_patch() {
depends=""
pkgdesc="Kernel patch for the WireGuard VPN"
cd "$builddir"
mkdir -p "$subpkgdir/usr/share/wireguard"
contrib/kernel-tree/create-patch.sh > "$subpkgdir/usr/share/wireguard/wireguard-$pkgver.patch"
}
sha512sums="b15424036f26298d8511ca0d0d6a485ff0992726d61fabff8bf6dd64d0a65423bf901e5eb14d3080372017390b05d25faff89a72128932c7408f93f59165c321 WireGuard-0.0.20191012.tar.xz"
|