wok view icu/receipt @ rev 3341

Remove DirectFB
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jun 11 11:12:42 2009 +0200 (2009-06-11)
parents d740174ffa18
children 7d71309e1247
line source
1 # SliTaz package receipt.
3 PACKAGE="icu"
4 VERSION="4c-4_0"
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-tests \
20 --disable-samples \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$WOK/$PACKAGE/icu-$VERSION/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 }