blob: d42276247905538d0c787a028a71f1e10670838e (
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: h8ray <gofindme at dmc dot chat>
pkgname=amneziawg-dkms-git
_pkgname=amneziawg-linux-kernel-module
pkgver=r1310.515fbf6
pkgrel=1
pkgdesc="AmneziaWG is a contemporary version of the popular VPN protocol, WireGuard"
arch=("x86_64")
url="https://github.com/amnezia-vpn/amneziawg-linux-kernel-module"
license=("GPLv2")
depends=("dkms" "wget" "tar")
makedepends=("git")
provides=(AMNEZIAWG-MODULE)
conflicts=("$_pkgname")
source=("git+https://github.com/amnezia-vpn/amneziawg-linux-kernel-module.git"
"prepare-sources.sh")
sha256sums=("SKIP"
"fe308a3a980577ba86998d4d17f390a2261177411a13b5bc9fc98e6c282ce05a")
pkgver() {
cd "${srcdir}/${_pkgname}"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
prepare() {
cd "${srcdir}/${_pkgname}"
cp -vf --no-preserve=ownership --preserve=mode ../prepare-sources.sh kernel-tree-scripts/prepare-sources.sh
}
package() {
cd "${srcdir}/${_pkgname}/src"
make DESTDIR="${pkgdir}" dkms-install
}
|