wok view libidn/receipt @ rev 21239

updated libidn and libidn-dev (1.21 -> 1.35)
author Hans-G?nter Theisgen
date Thu Apr 11 14:17:59 2019 +0100 (2019-04-11)
parents fa583ef36fa9
children 5d79829fa876
line source
1 # SliTaz package receipt.
3 PACKAGE="libidn"
4 VERSION="1.35"
5 CATEGORY="system-tools"
6 SHORT_DESC="Encode and decode internationalized domain names."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3 LGPL2.1"
9 WEB_SITE="https://www.gnu.org/software/$PACKAGE/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
14 HOST_ARCH="i486 arm"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure $CONFIGURE_ARGS &&
20 make $MAKEFLAGS -j 1 &&
21 make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }