2009-01-28 11:29:33 +00:00
|
|
|
# Copyright (C) 2009 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:=libidn
|
2009-10-03 10:12:42 +00:00
|
|
|
PKG_VERSION:=1.15
|
2009-01-28 11:29:33 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=@GNU/libidn
|
2009-10-03 10:12:42 +00:00
|
|
|
PKG_MD5SUM:=482a25b7b223e52f967fafd284a1a992
|
2009-01-28 11:29:33 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/libidn
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
TITLE:=Stringprep, Punycode and IDNA implementation
|
|
|
|
URL:=http://www.gnu.org/software/libidn/
|
|
|
|
endef
|
|
|
|
|
2009-04-19 16:13:26 +00:00
|
|
|
define Package/libidn/description
|
2009-01-28 11:29:33 +00:00
|
|
|
GNU Libidn is a fully documented implementation of the Stringprep,
|
|
|
|
Punycode and IDNA specifications. Libidn's purpose is to encode and
|
|
|
|
decode internationalized domain names.
|
|
|
|
endef
|
|
|
|
|
|
|
|
TARGET_CFLAGS += $(FPIC)
|
2009-04-19 16:13:26 +00:00
|
|
|
|
2009-01-28 11:29:33 +00:00
|
|
|
CONFIGURE_ARGS += \
|
|
|
|
--enable-shared \
|
|
|
|
--enable-static \
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(call Build/Compile/Default, \
|
|
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
|
|
CC="$(TARGET_CC)" \
|
|
|
|
all install \
|
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/InstallDev
|
|
|
|
mkdir -p $(1)/usr/include
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/*.h $(1)/usr/include/
|
|
|
|
mkdir -p $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libidn.{a,so*} $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libidn/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libidn.so.* $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,libidn))
|