mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 15:02:01 +08:00
bd66f3b4a1
Changes since 1.9.1: - Add TLS-PSK support and SSLKEYLOGFILE mechanism (1.11.0) - Add options to require Message-Authenticator attribute (1.11.0) - Add native dynamic discovery for NAPTR and SRV records (1.10.0) - Add SNI support for outgoing TLS connections (1.10.0) - Multiple TCP/TLS connection stability bug fixes (1.10.x) - Reload complete TLS context on SIGHUP (1.11.0) - Fix Message-Authenticator validation for Accounting-Response (1.11.2) Update patch 200-logdest-on-foreground.patch for new code positions. Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
59 lines
1.4 KiB
Makefile
59 lines
1.4 KiB
Makefile
#
|
|
# Copyright (C) 2008-2016 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=radsecproxy
|
|
PKG_VERSION:=1.11.2
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://github.com/radsecproxy/radsecproxy/releases/download/$(PKG_VERSION)/
|
|
PKG_HASH:=1fe3f25a392b74db1fe62868e19e883acd1dc0e1f318715299920fcc5e166f97
|
|
|
|
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
|
|
PKG_LICENSE:=BSD-3-CLAUSE
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
PKG_CPE_ID:=cpe:/a:uninett:radsecproxy
|
|
|
|
PKG_FIXUP:=autoreconf
|
|
PKG_BUILD_PARALLEL:=1
|
|
PKG_INSTALL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/radsecproxy
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=+libopenssl +libpthread +libnettle
|
|
TITLE:=radsecproxy
|
|
URL:=https://radsecproxy.github.io/
|
|
endef
|
|
|
|
define Package/radsecproxy/description
|
|
A generic radius proxy for UDP/TLS (RadSec)
|
|
endef
|
|
|
|
CONFIGURE_ARGS+= \
|
|
--with-ssl="$(STAGING_DIR)/usr"
|
|
|
|
define Package/radsecproxy/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin/
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/radsecproxy $(1)/usr/sbin/
|
|
$(INSTALL_DIR) $(1)/etc/config/
|
|
$(INSTALL_DATA) ./files/radsecproxy.conf $(1)/etc/config/radsecproxy
|
|
$(INSTALL_DIR) $(1)/etc/init.d/
|
|
$(INSTALL_BIN) ./files/radsecproxy.init $(1)/etc/init.d/radsecproxy
|
|
endef
|
|
|
|
define Package/radsecproxy/conffiles
|
|
/etc/config/radsecproxy
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,radsecproxy))
|
|
|