# SliTaz package receipt.

PACKED_SIZE="64.0K"
UNPACKED_SIZE="268.0K"
PACKAGE="libidn"
VERSION="1.38"
CATEGORY="system-tools"
SHORT_DESC="Encode and decode internationalized domain names."
MAINTAINER="pascal.bellard@slitaz.org"
LICENSE="GPL3 LGPL2.1"
WEB_SITE="https://www.gnu.org/software/$PACKAGE/"

TARBALL="$PACKAGE-$VERSION.tar.gz"
WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"

SUGGESTED="libidn-lang"

HOST_ARCH="i486 arm"

# What is the latest version available today?
current_version()
{
	wget -O - https://ftp.gnu.org/gnu/libidn/ 2>/dev/null | \
	sed "/$PACKAGE-[0-9]/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
}

# Rules to configure and make the package.
compile_rules()
{
	./configure $CONFIGURE_ARGS &&
	make $MAKEFLAGS &&
	make install
}

# Rules to gen a SliTaz package suitable for Tazpkg.
genpkg_rules()
{
	cook_copy_folders	bin
	cook_copy_files		*.so*
}
