1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-16 20:33:58 +02:00
openwrt-packages/libs/libradcli/Makefile
Nick Hainke 69e2ee1c95 radcli: uptdate to 1.3.0
- Removed duplicate function definition from util.h
- Increased size of dictionary vendor and values to 32-bits from 16;
  this breaks the ABI from the previous release.
- Corrected a string termination issue in rc_avpair_tostr()
- Added functions to create dictionary without a file:
      rc_dict_addattr
      rc_dict_addval
      rc_dict_addvend

Signed-off-by: Nick Hainke <vincent@systemli.org>
2022-07-03 23:05:06 +02:00

77 lines
2.0 KiB
Makefile

#
# Copyright (C) 2015 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:=libradcli
PKG_VERSION:=1.3.0
PKG_RELEASE:=1
PKG_SOURCE:=radcli-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://github.com/radcli/radcli/releases/download/$(PKG_VERSION)
PKG_HASH:=20ddc8429d5912dfa2e71fafc93881844ce98e898c041b1dd7f757b9ddc8fcfd
PKG_BUILD_DIR:=$(BUILD_DIR)/radcli-$(PKG_VERSION)
PKG_INSTALL:=1
PKG_BUILD_PARALLEL:=1
include $(INCLUDE_DIR)/package.mk
define Package/libradcli
SECTION:=libs
CATEGORY:=Libraries
TITLE:=A library for radius clients
URL:=https://radcli.github.io/radcli
MAINTAINER:=Nikos Mavrogiannopoulos <nmav@gnutls.org>
DEPENDS:= +RADCLI_TLS:libgnutls +libnettle
endef
define Package/libradcli/decription
The radcli library is a library for writing RADIUS Clients. The library's
approach is to allow writing RADIUS-aware application in less than 50 lines
of C code. It was based originally on freeradius-client and is source
compatible with it.
endef
CONFIGURE_ARGS+= \
--enable-legacy-compat
ifneq ($(CONFIG_RADCLI_TLS),y)
CONFIGURE_ARGS += --without-tls
endif
define Build/InstallDev
$(INSTALL_DIR) $(1)/usr/include/radcli
$(CP) \
$(PKG_INSTALL_DIR)/usr/include/radcli/radcli.h \
$(PKG_INSTALL_DIR)/usr/include/radcli/version.h \
$(1)/usr/include/radcli
$(CP) \
$(PKG_INSTALL_DIR)/usr/include/freeradius-client.h \
$(1)/usr/include/
$(INSTALL_DIR) $(1)/usr/lib
$(CP) \
$(PKG_INSTALL_DIR)/usr/lib/libradcli.so* \
$(PKG_INSTALL_DIR)/usr/lib/libfreeradius-client.so \
$(1)/usr/lib/
endef
define Package/libradcli/conffiles
/etc/radcli/radiusclient.conf
endef
define Package/libradcli/install
$(INSTALL_DIR) $(1)/etc/radcli
$(INSTALL_CONF) $(PKG_BUILD_DIR)/etc/radiusclient.conf $(1)/etc/radcli/
$(INSTALL_DIR) $(1)/usr/lib
$(CP) \
$(PKG_INSTALL_DIR)/usr/lib/libradcli.so.* \
$(1)/usr/lib/
endef
$(eval $(call BuildPackage,libradcli))