wok diff icu/receipt @ rev 15659
c_icap: do not start daemon while cooking
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Dec 12 07:48:19 2013 +0000 (2013-12-12) |
parents | b7319995b37e |
children | b5fc131dba9c |
line diff
1.1 --- a/icu/receipt Mon Jan 02 23:06:18 2012 +0100 1.2 +++ b/icu/receipt Thu Dec 12 07:48:19 2013 +0000 1.3 @@ -5,6 +5,7 @@ 1.4 CATEGORY="system-tools" 1.5 SHORT_DESC="C/C++ and Java libraries providing Unicode and Globalization." 1.6 MAINTAINER="pankso@slitaz.org" 1.7 +LICENSE="MIT" 1.8 SOURCE="icu4c" 1.9 TARBALL="$SOURCE-${VERSION//./_}-src.tgz" 1.10 WEB_SITE="http://www.icu-project.org/" 1.11 @@ -16,17 +17,19 @@ 1.12 { 1.13 cd $src/source 1.14 sed -i 's/dirname -- /dirname/' configure 1.15 + { 1.16 ./configure \ 1.17 --disable-tests \ 1.18 --disable-samples \ 1.19 $CONFIGURE_ARGS && 1.20 make && 1.21 make DESTDIR=$DESTDIR install 1.22 + } 2>&1 | sed -e 's|\(./config.*\)No such file|\1no such file|' 1.23 } 1.24 1.25 # Rules to gen a SliTaz package suitable for Tazpkg. 1.26 genpkg_rules() 1.27 { 1.28 mkdir -p $fs/usr/lib 1.29 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.30 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.31 }