# HG changeset patch # User Christophe Lincoln # Date 1335178236 -7200 # Node ID 02c2619cbe1c0cafdc6e61833d375d886476879b # Parent d70557cd013349611f2ea789828f9f252db3bc8e Up: pcre (8.30) Have --enable-unicode-properties so we can build glib with it diff -r d70557cd0133 -r 02c2619cbe1c pcre-dev/receipt --- a/pcre-dev/receipt Sun Apr 22 19:51:18 2012 +0200 +++ b/pcre-dev/receipt Mon Apr 23 12:50:36 2012 +0200 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="pcre-dev" -VERSION="8.20" +VERSION="8.30" CATEGORY="development" SHORT_DESC="Perl Compatible Regular Expressions devel files." MAINTAINER="pankso@slitaz.org" @@ -13,8 +13,8 @@ genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib - cp -a $_pkg/usr/include $fs/usr - cp -a $_pkg/usr/bin $fs/usr + cp -a $install/usr/lib/*.*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/include $fs/usr + cp -a $install/usr/bin $fs/usr } diff -r d70557cd0133 -r 02c2619cbe1c pcre/receipt --- a/pcre/receipt Sun Apr 22 19:51:18 2012 +0200 +++ b/pcre/receipt Mon Apr 23 12:50:36 2012 +0200 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="pcre" -VERSION="8.20" +VERSION="8.30" CATEGORY="system-tools" SHORT_DESC="Perl Compatible Regular Expressions." MAINTAINER="pankso@slitaz.org" @@ -13,7 +13,10 @@ compile_rules() { cd $src - ./configure --enable-utf8 $CONFIGURE_ARGS && + ./configure \ + --enable-utf \ + --enable-unicode-properties \ + $CONFIGURE_ARGS && make && make install } @@ -21,5 +24,5 @@ genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib + cp -a $install/usr/lib/*.so* $fs/usr/lib }