2 # Copyright (C) 2016-2017 Jason A. Donenfeld <Jason@zx2c4.com>
3 # Copyright (C) 2016 Baptiste Jonglez <openwrt@bitsofnetworks.org>
4 # Copyright (C) 2016-2017 Dan Luedtke <mail@danrl.com>
6 # This is free software, licensed under the GNU General Public License v2.
7 # See /LICENSE for more information.
9 include $(TOPDIR
)/rules.mk
10 include $(INCLUDE_DIR
)/kernel.mk
14 PKG_VERSION
:=0.0.20180304
17 PKG_SOURCE
:=WireGuard-
$(PKG_VERSION
).
tar.xz
18 PKG_SOURCE_URL
:=https
://git.zx2c4.com
/WireGuard
/snapshot
/
19 PKG_HASH
:=efb1652f0da67fb2731040439b6abb820a5e2f1bc177aa15c5dce68ea3327787
21 PKG_LICENSE
:=GPL-2.0 Apache-2.0
22 PKG_LICENSE_FILES
:=COPYING
24 PKG_BUILD_DIR
:=$(KERNEL_BUILD_DIR
)/WireGuard-
$(PKG_VERSION
)
28 # WireGuard's makefile needs this to know where to build the kernel module
29 export KERNELDIR
:=$(LINUX_DIR
)
31 include $(INCLUDE_DIR
)/package.mk
33 define Package
/wireguard
/Default
37 URL
:=https
://www.wireguard.com
38 MAINTAINER
:=Baptiste Jonglez
<openwrt@bitsofnetworks.org
>, \
39 Dan Luedtke
<mail@danrl.com
>, \
40 Jason A. Donenfeld
<Jason@zx2c4.com
>
43 define Package
/wireguard
/Default
/description
44 WireGuard is a novel VPN that runs inside the Linux Kernel and utilizes
45 state-of-the-art cryptography. It aims to be faster
, simpler
, leaner
, and
46 more useful than IPSec
, while avoiding the massive headache. It intends to
47 be considerably more performant than OpenVPN. WireGuard is designed
as a
48 general purpose VPN for running on embedded interfaces and super computers
49 alike
, fit for many different circumstances. It uses UDP.
52 define Package
/wireguard
53 $(call Package
/wireguard
/Default
)
54 TITLE
:=WireGuard meta-package
55 DEPENDS
:=+wireguard-tools
+kmod-wireguard
58 include $(INCLUDE_DIR
)/kernel-defaults.mk
59 include $(INCLUDE_DIR
)/package-defaults.mk
61 # Used by Build/Compile/Default
65 $(MAKE
) $(KERNEL_MAKEOPTS
) M
="$(PKG_BUILD_DIR)/src" modules
66 $(call Build
/Compile
/Default
)
69 define Package
/wireguard
/install
73 define Package
/wireguard
/description
74 $(call Package
/wireguard
/Default
/description
)
77 define Package
/wireguard-tools
78 $(call Package
/wireguard
/Default
)
79 TITLE
:=WireGuard userspace control program
(wg
)
83 define Package
/wireguard-tools
/description
84 $(call Package
/wireguard
/Default
/description
)
86 This package provides the userspace control program for WireGuard
,
87 `wg(8)`, and a netifd protocol helper.
90 define Package
/wireguard-tools
/install
91 $(INSTALL_DIR
) $(1)/usr
/bin
/
92 $(INSTALL_BIN
) $(PKG_BUILD_DIR
)/src
/tools
/wg
$(1)/usr
/bin
/
93 $(INSTALL_DIR
) $(1)/lib
/netifd
/proto
/
94 $(INSTALL_BIN
) .
/files
/wireguard.sh
$(1)/lib
/netifd
/proto
/
97 define KernelPackage
/wireguard
99 CATEGORY
:=Kernel modules
100 SUBMENU
:=Network Support
101 TITLE
:=WireGuard kernel module
102 DEPENDS
:=+IPV6
:kmod-udptunnel6
+kmod-udptunnel4
103 FILES
:= $(PKG_BUILD_DIR
)/src
/wireguard.
$(LINUX_KMOD_SUFFIX
)
104 AUTOLOAD
:=$(call AutoProbe
,wireguard
)
107 define KernelPackage
/wireguard
/description
108 $(call Package
/wireguard
/Default
/description
)
110 This package provides the kernel module for WireGuard.
113 $(eval
$(call BuildPackage
,wireguard
))
114 $(eval
$(call BuildPackage
,wireguard-tools
))
115 $(eval
$(call KernelPackage
,wireguard
))