wok view libiconv/receipt @ rev 2039

cairo: back to 1.8.4 or pango/gtk+ will not build
author Christophe Lincoln <pankso@slitaz.org>
date Wed Jan 14 21:36:12 2009 +0100 (2009-01-14)
parents dcdc90b45f95
children 0b0529cac68c
line source
1 # SliTaz package receipt.
3 PACKAGE="libiconv"
4 VERSION="1.12"
5 CATEGORY="misc"
6 SHORT_DESC="Conversion between Unicode and country dependent character encoding"
7 MAINTAINER="domcox@users.soureforge.net"
8 DEPENDS=""
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gnu.org/software/libiconv"
11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --infodir=/usr/share/info \
18 --mandir=/usr/share/man $CONFIGURE_ARGS
19 make
20 make DESTDIR=$PWD/_pkg 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 $_pkg/usr/bin $fs/usr
28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 }