wok view wireguard-tools/receipt @ rev 25437

Add wireguard for linux64
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Aug 31 17:31:14 2022 +0000 (20 months ago)
parents
children 4b3fc3102e2d
line source
1 # SliTaz package receipt.
3 PACKAGE="wireguard-tools"
4 VERSION="1.0.20210914"
5 CATEGORY="base-system"
6 MAINTAINER="pascal.bellard@slitaz.org"
7 LICENSE="GPL2"
8 SHORT_DESC="Tools for configuring WireGuard VPN."
9 WEB_SITE="https://www.wireguard.com/"
10 TARBALL="$PACKAGE-$VERSION.tar.xz"
11 WGET_URL="https://git.zx2c4.com/$PACKAGE/snapshot/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS=""
16 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd src &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir $fs/usr
29 cp -a $install/usr/bin $fs/usr
30 }