mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-11 13:16:45 +02:00
32 lines
1 KiB
Text
32 lines
1 KiB
Text
# Contributor: Stefan Reiff <kroko87@hotmail.com>
|
|
# Maintainer: Stefan Reiff <kroko87@hotmail.com>
|
|
pkgname=wireguard-go
|
|
pkgver=0.0.20230223
|
|
pkgrel=10
|
|
pkgdesc="Next generation secure network tunnel: userspace implementation in go"
|
|
url="https://www.wireguard.com"
|
|
license="GPL-2.0-only"
|
|
arch="all"
|
|
makedepends="go"
|
|
depends="wireguard-tools-wg wireguard-tools-wg-quick"
|
|
subpackages="$pkgname-doc"
|
|
options="!check"
|
|
source="https://git.zx2c4.com/wireguard-go/snapshot/wireguard-go-$pkgver.tar.xz"
|
|
|
|
export GOCACHE="${GOCACHE:-"$srcdir/go-cache"}"
|
|
export GOTMPDIR="${GOTMPDIR:-"$srcdir"}"
|
|
export GOMODCACHE="${GOMODCACHE:-"$srcdir/go"}"
|
|
|
|
build() {
|
|
make GOFLAGS="$GOFLAGS -ldflags=-checklinkname=0"
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
install -Dm644 README.md "$pkgdir"/usr/share/doc/$pkgname/README.md
|
|
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
|
}
|
|
|
|
sha512sums="
|
|
221ecea400fdfdfd564d8ab3b1939cab289b28a00c8d2e8e41bd56484f09d66e20a3dd34dc81471e7fc5133bebffc621be984b8a8d3475a0e4b08daa350d5583 wireguard-go-0.0.20230223.tar.xz
|
|
"
|