blob: 6e698fbed037ff874055e66a18a7811dd8002aad (
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
|
# 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.63
_kpkgrel=0
# when changing _ver we *must* bump _mypkgrel
# we must also match up _toolsrel with wireguard-tools
_ver=0.0.20171111
_mypkgrel=0
_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.com'
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
}
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="2424c3923555d72a0b5910fc86071b2554934267d4c6521bc40076770984173b2cef55f4276dd4b5a446ea62f7c52424cd89b046f205314cff2919ff7de30e6b WireGuard-0.0.20171111.tar.xz"
|