wok view libidn/receipt @ rev 15574

Add lionwiki
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Nov 29 08:13:21 2013 +0000 (2013-11-29)
parents ae1119091e03
children fa583ef36fa9
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"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure $CONFIGURE_ARGS &&
18 make $MAKEFLAGS &&
19 make install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $install/usr/bin $fs/usr
27 cp -a $install/usr/lib/*.so* $fs/usr/lib
28 }