wok rev 12470

Up: pcre (8.30) Have --enable-unicode-properties so we can build glib with it
author Christophe Lincoln <pankso@slitaz.org>
date Mon Apr 23 12:50:36 2012 +0200 (2012-04-23)
parents d70557cd0133
children bf0fdda3038d
files pcre-dev/receipt pcre/receipt
line diff
     1.1 --- a/pcre-dev/receipt	Sun Apr 22 19:51:18 2012 +0200
     1.2 +++ b/pcre-dev/receipt	Mon Apr 23 12:50:36 2012 +0200
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="pcre-dev"
     1.7 -VERSION="8.20"
     1.8 +VERSION="8.30"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="Perl Compatible Regular Expressions devel files."
    1.11  MAINTAINER="pankso@slitaz.org"
    1.12 @@ -13,8 +13,8 @@
    1.13  genpkg_rules()
    1.14  {
    1.15      mkdir -p $fs/usr/lib
    1.16 -    cp -a $_pkg/usr/lib/*.*a $fs/usr/lib
    1.17 -    cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
    1.18 -    cp -a $_pkg/usr/include $fs/usr
    1.19 -    cp -a $_pkg/usr/bin $fs/usr
    1.20 +    cp -a $install/usr/lib/*.*a $fs/usr/lib
    1.21 +    cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.22 +    cp -a $install/usr/include $fs/usr
    1.23 +    cp -a $install/usr/bin $fs/usr
    1.24  }
     2.1 --- a/pcre/receipt	Sun Apr 22 19:51:18 2012 +0200
     2.2 +++ b/pcre/receipt	Mon Apr 23 12:50:36 2012 +0200
     2.3 @@ -1,7 +1,7 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="pcre"
     2.7 -VERSION="8.20"
     2.8 +VERSION="8.30"
     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 --enable-utf8 $CONFIGURE_ARGS &&
    2.17 +	./configure \
    2.18 +		--enable-utf \
    2.19 +		--enable-unicode-properties \
    2.20 +		$CONFIGURE_ARGS &&
    2.21  	make && make install
    2.22  }
    2.23  
    2.24 @@ -21,5 +24,5 @@
    2.25  genpkg_rules()
    2.26  {
    2.27  	mkdir -p $fs/usr/lib
    2.28 -	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    2.29 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    2.30  }