blob: c5db5de0b1f32ec672a5c5ede4a762dd11593997 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# Contributor: Stuart Cardall <developer@it-offshore.co.uk>
# Maintainer: Stuart Cardall <developer@it-offshore.co.uk>
_flavor=${FLAVOR:-vanilla}
_kpkg=linux-$_flavor
_kver=4.9.28
_kpkgrel=2
# when changing _ver we *must* bump _mypkgrel
# we must also match up _toolsrel with wireguard-tools
_ver=0.0.20170517
_mypkgrel=1
_toolsrel=0
_name=wireguard
# verify the kernel version before entering chroot
_kapkbuild=../../linux-${_flavor}/APKBUILD
if [ -f $_kapkbuild ]; then
. $_kapkbuild
pkgname=$_name-$_flavor
[ "$_kver" != "$pkgver" ] && die "please update _kver to $pkgver"
[ "$_kpkgrel" != "$pkgrel" ] && die "please update _kpkgrel to $pkgrel"
fi
_kpkgver="$_kver-r$_kpkgrel"
_toolsver="$_ver-r$toolsrel"
_abi_release=${_kver}
pkgname=${_name}-${_flavor}
pkgver=$_kver
pkgrel=$(($_kpkgrel + $_mypkgrel))
pkgdesc="Next generation secure network tunnel: kernel modules for $_flavor"
arch='all'
url='https://www.wireguard.io'
license="GPLv2"
depends="${_kpkg}=${_kpkgver}"
makedepends="linux-vanilla-dev=$_kpkgver libmnl-dev"
install_if="wireguard-tools=$_toolsver linux-vanilla=$_kpkgver"
options="!check"
source="https://git.zx2c4.com/WireGuard/snapshot/WireGuard-$_ver.tar.xz"
builddir="$srcdir"/WireGuard-$_ver
build() {
cd "$builddir"
# only building module: see wireguard-tools for userspace
unset LDFLAGS
make -C src/ \
KERNELDIR=/lib/modules/${_abi_release}/build \
module \
|| return 1
}
package() {
cd "$builddir/src"
local module=
for module in *.ko; do
install -v -D -m644 ${module} \
"$pkgdir/lib/modules/$_abi_release/extra/${module}"
done
}
sha512sums="44ace726a231250abaf4fc440f4e24dc7f811c1e6f95476f51f9d077996435049406ff0cb9fe3cff880ceb6a600218529b485826bb231a5c88ac28f0fafacff2 WireGuard-0.0.20170517.tar.xz"
|