libpcre: update to 6.6

This commit is contained in:
Nick Steeves 2006-02-28 10:42:48 +00:00
parent d46fc0baa1
commit 804da7d9cf
3 changed files with 10 additions and 9 deletions

View File

@ -8,6 +8,7 @@ drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/pcre_scanner.h
-rw-r--r-- root/root usr/include/pcre_stringpiece.h
-rw-r--r-- root/root usr/include/pcrecpp.h
-rw-r--r-- root/root usr/include/pcrecpparg.h
-rw-r--r-- root/root usr/include/pcreposix.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libpcre.a
@ -34,6 +35,7 @@ drwxr-xr-x root/root usr/man/man1/
drwxr-xr-x root/root usr/man/man3/
-rw-r--r-- root/root usr/man/man3/pcre.3.gz
-rw-r--r-- root/root usr/man/man3/pcre_compile.3.gz
-rw-r--r-- root/root usr/man/man3/pcre_compile2.3.gz
-rw-r--r-- root/root usr/man/man3/pcre_config.3.gz
-rw-r--r-- root/root usr/man/man3/pcre_copy_named_substring.3.gz
-rw-r--r-- root/root usr/man/man3/pcre_copy_substring.3.gz
@ -57,7 +59,9 @@ drwxr-xr-x root/root usr/man/man3/
-rw-r--r-- root/root usr/man/man3/pcrecompat.3.gz
-rw-r--r-- root/root usr/man/man3/pcrecpp.3.gz
-rw-r--r-- root/root usr/man/man3/pcrematching.3.gz
-rw-r--r-- root/root usr/man/man3/pcrepartial.3.gz
-rw-r--r-- root/root usr/man/man3/pcrepattern.3.gz
-rw-r--r-- root/root usr/man/man3/pcreperform.3.gz
-rw-r--r-- root/root usr/man/man3/pcreposix.3.gz
-rw-r--r-- root/root usr/man/man3/pcreprecompile.3.gz
-rw-r--r-- root/root usr/man/man3/pcresample.3.gz

View File

@ -1 +1 @@
c5c73e8767479e8a7751324b0aa32291 pcre-6.4.tar.bz2
61067f730c46cf6bdd0f8efe3f4f51b6 pcre-6.6.tar.bz2

View File

@ -1,23 +1,20 @@
# Description: Perl Compatible Regular Expressions
# URL: http://www.pcre.org
# Maintainer: sten, nick dot steeves at shaw dot ca
# Packager: Daniel Mueller, daniel at danm dot de
# Packager:
name=libpcre
version=6.4
version=6.6
release=1
source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-$version.tar.bz2)
build () {
build() {
cd pcre-$version
export CFLAGS="$CFLAGS -L$PKG/usr/lib"
export LDFLAGS="$LDFLAGS -L$PKG/usr/lib"
./configure --prefix=/usr \
--enable-utf8 \
--enable-unicode-properties
--enable-utf8 \
--enable-unicode-properties
make
make DESTDIR=$PKG install
# Fix broken .la files
sed -i "s|-L$PKG/usr/lib||g" $PKG/usr/lib/*.la
sed -i "s|-L$SRC/pcre-$version||g" $PKG/usr/lib/*.la
}