wok view icu/receipt @ rev 1077

Up: firefox (3.0.1)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Jul 16 15:59:00 2008 +0200 (2008-07-16)
parents
children d740174ffa18
line source
1 # SliTaz package receipt.
3 PACKAGE="icu"
4 VERSION="4c-4_0_d02"
5 CATEGORY="system-tools"
6 SHORT_DESC="C/C++ and Java libraries providing Unicode and Globalization."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="icu${VERSION}-src.tgz"
9 WEB_SITE="http://www.icu-project.org/"
10 WGET_URL="http://download.icu-project.org/files/icu4c/4.0/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 mv icu icu-$VERSION && cd $src/source
16 ./configure \
17 --prefix=/usr \
18 --mandir=/usr/share/man \
19 --disable-extras \
20 --disable-tests \
21 --disable-samples \
22 $CONFIGURE_ARGS
23 make
24 make DESTDIR=$WOK/$PACKAGE/icu-$VERSION/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
32 }