* Version 2.0.5 (released 2018-05-18) ** Switched the default library behavior to IDNA2008 as amended by TR#46 (non-transitional). That default behavior is enabled when no flags are specified to function calls. Applications can utilize the %IDN2_NO_TR46 flag to switch to the unamended IDNA2008. This is done in the interest of interoperability based on the fact that this is what application writers care about rather than strict compliance with a particular protocol. ** Fixed memleak in idn2_to_unicode_8zlz(). ** Return error (IDN2_ICONV_FAIL) on charset conversion errors. ** Fixed issue with STD3 rules applying in non-transitional TR46 mode. ** idn2: added option --usestd3asciirules. Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
93 lines
2.4 KiB
Makefile
93 lines
2.4 KiB
Makefile
#
|
|
# Copyright (C) 2017-2018 Daniel Engberg <daniel.engberg.lists@pyret.net>
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=libidn2
|
|
PKG_VERSION:=2.0.5
|
|
PKG_RELEASE:=1
|
|
PKG_MAINTAINER:=Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
|
|
PKG_LICENSE:=GPL-2.0-or-later LGPL-3.0-or-later
|
|
PKG_LICENSE_FILES:=COPYING COPYINGv2 COPYING.LESSERv3
|
|
|
|
PKG_SOURCE_URL:=@GNU/libidn
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_HASH:=53f69170886f1fa6fa5b332439c7a77a7d22626a82ef17e2c1224858bb4ca2b8
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/nls.mk
|
|
|
|
define Package/idn2/Default
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
URL:=http://www.gnu.org/software/libidn/
|
|
endef
|
|
|
|
define Package/idn2/Default/description
|
|
Libidn2 is a free software implementation of IDNA2008,
|
|
Punycode and TR46 in library form. It contains
|
|
functionality to convert internationalized domain
|
|
names to and from ASCII Compatible Encoding (ACE),
|
|
following the IDNA2008 and TR46 standards.
|
|
endef
|
|
|
|
define Package/idn2
|
|
$(call Package/idn2/Default)
|
|
SUBMENU:=IP Addresses and Names
|
|
TITLE:=GNU IDN2 (Internationalized Domain Name) tool
|
|
DEPENDS:=+libidn2
|
|
endef
|
|
|
|
define Package/idn2/description
|
|
$(call Package/idn2/Default/description)
|
|
|
|
Command line tool using libidn2
|
|
|
|
endef
|
|
|
|
define Package/libidn2
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
DEPENDS:=+libunistring $(ICONV_DEPENDS) $(INTL_DEPENDS)
|
|
TITLE:=International domain name library (IDNA2008, Punycode and TR46)
|
|
URL:=https://www.gnu.org/software/libidn/#libidn2
|
|
endef
|
|
|
|
define Package/libidn2/description
|
|
$(call Package/idn2/Default/description)
|
|
|
|
Library only package
|
|
|
|
endef
|
|
|
|
CONFIGURE_ARGS += \
|
|
--disable-rpath \
|
|
--disable-doc
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/include
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/include/idn2.h $(1)/usr/include
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/*.{la,so}* $(1)/usr/lib/
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libidn2.pc $(1)/usr/lib/pkgconfig/
|
|
endef
|
|
|
|
define Package/idn2/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/
|
|
endef
|
|
|
|
define Package/libidn2/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/*.so* $(1)/usr/lib/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,idn2))
|
|
$(eval $(call BuildPackage,libidn2))
|