wok view libidn/receipt @ rev 20200

aufs: move kernel module to linux*-aufs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Feb 12 17:29:20 2018 +0100 (2018-02-12)
parents dead8955c3ca
children bd3e2cbc0ec4
line source
1 # SliTaz package receipt.
3 PACKAGE="libidn"
4 VERSION="1.21"
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gnu.org/software/$PACKAGE/"
11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
12 HOST_ARCH="i486 arm"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure $CONFIGURE_ARGS &&
19 make $MAKEFLAGS &&
20 make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $install/usr/bin $fs/usr
28 cp -a $install/usr/lib/*.so* $fs/usr/lib
29 }