wok-current rev 564
Up: pcre (7.6) with utf8 support
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sun Apr 13 00:44:44 2008 +0200 (2008-04-13) |
parents | 0bfc2de68374 |
children | 2a5b3919dd73 |
files | pcre-dev/receipt pcre/receipt |
line diff
1.1 --- a/pcre-dev/receipt Sun Apr 13 00:33:14 2008 +0200 1.2 +++ b/pcre-dev/receipt Sun Apr 13 00:44:44 2008 +0200 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="pcre-dev" 1.7 -VERSION="7.4" 1.8 +VERSION="7.6" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Perl Compatible Regular Expressions devel files." 1.11 MAINTAINER="pankso@slitaz.org" 1.12 @@ -16,5 +16,4 @@ 1.13 cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 1.14 cp -a $_pkg/usr/include $fs/usr 1.15 cp -a $_pkg/usr/bin $fs/usr 1.16 - strip -s $fs/usr/bin/* 2>/dev/null 1.17 }
2.1 --- a/pcre/receipt Sun Apr 13 00:33:14 2008 +0200 2.2 +++ b/pcre/receipt Sun Apr 13 00:44:44 2008 +0200 2.3 @@ -1,7 +1,7 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="pcre" 2.7 -VERSION="7.4" 2.8 +VERSION="7.6" 2.9 CATEGORY="system-tools" 2.10 SHORT_DESC="Perl Compatible Regular Expressions." 2.11 MAINTAINER="pankso@slitaz.org" 2.12 @@ -13,7 +13,10 @@ 2.13 compile_rules() 2.14 { 2.15 cd $src 2.16 - ./configure --prefix=/usr $CONFIGURE_ARGS 2.17 + ./configure \ 2.18 + --prefix=/usr \ 2.19 + --enable-utf8 \ 2.20 + $CONFIGURE_ARGS 2.21 make 2.22 make DESTDIR=$PWD/_pkg install 2.23 } 2.24 @@ -23,5 +26,4 @@ 2.25 { 2.26 mkdir -p $fs/usr/lib 2.27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 2.28 - strip -s $fs/usr/lib/* 2.29 }