blob: ffa089afc11855bf0eec26d97c3fa52b380768c1 (
plain)
1 # Description: wireguard user-space utility
2 # URL: https://wireguard.io
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Depends on: libmnl
5
6 name=wg
7 version=20170421
8 release=1
9 source=(https://git.zx2c4.com/WireGuard/snapshot/WireGuard-0.0.${version}.tar.xz)
10
11 build() {
12
13 cd WireGuard-0.0.$version/src/tools
14 make
15 make DESTDIR=$PKG install
16
17 }
|