wok diff icu/receipt @ rev 1116

Add mcabber mcabber-help
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jul 20 11:43:38 2008 +0000 (2008-07-20)
parents
children d740174ffa18
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/icu/receipt	Sun Jul 20 11:43:38 2008 +0000
     1.3 @@ -0,0 +1,32 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="icu"
     1.7 +VERSION="4c-4_0_d02"
     1.8 +CATEGORY="system-tools"
     1.9 +SHORT_DESC="C/C++ and Java libraries providing Unicode and Globalization."
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +TARBALL="icu${VERSION}-src.tgz"
    1.12 +WEB_SITE="http://www.icu-project.org/"
    1.13 +WGET_URL="http://download.icu-project.org/files/icu4c/4.0/$TARBALL"
    1.14 +
    1.15 +# Rules to configure and make the package.
    1.16 +compile_rules()
    1.17 +{
    1.18 +	mv icu icu-$VERSION && cd $src/source
    1.19 +	./configure \
    1.20 +		--prefix=/usr \
    1.21 +		--mandir=/usr/share/man \
    1.22 +		--disable-extras \
    1.23 +		--disable-tests \
    1.24 +		--disable-samples \
    1.25 +		$CONFIGURE_ARGS
    1.26 +	make
    1.27 +	make DESTDIR=$WOK/$PACKAGE/icu-$VERSION/_pkg install
    1.28 +}
    1.29 +
    1.30 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.31 +genpkg_rules()
    1.32 +{
    1.33 +	mkdir -p $fs/usr/lib
    1.34 +	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.35 +}