2006-02-28 10:50:29 +00:00
|
|
|
|
# Description: Perl Compatible Regular Expressions
|
2006-02-23 15:26:10 +00:00
|
|
|
|
# URL: http://www.pcre.org
|
2006-09-06 23:10:13 +00:00
|
|
|
|
# Maintainer: Simon Glo<6C>ner, viper at hometux dot de
|
2006-02-28 10:50:29 +00:00
|
|
|
|
# Packager: Han Boetes, han at mijncomputer dot nl
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
|
|
name=libpcre
|
2007-09-21 20:21:55 +02:00
|
|
|
|
version=7.4
|
2006-09-06 23:10:13 +00:00
|
|
|
|
release=1
|
2007-09-21 20:21:55 +02:00
|
|
|
|
source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-$version.tar.bz2)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
2006-02-28 10:42:48 +00:00
|
|
|
|
build() {
|
2006-02-23 15:26:10 +00:00
|
|
|
|
cd pcre-$version
|
2006-09-06 23:10:13 +00:00
|
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
|
--prefix=/usr \
|
2006-12-20 11:07:27 +01:00
|
|
|
|
--mandir=/usr/man \
|
2006-02-28 10:42:48 +00:00
|
|
|
|
--enable-utf8 \
|
|
|
|
|
--enable-unicode-properties
|
2006-02-23 15:26:10 +00:00
|
|
|
|
make
|
|
|
|
|
make DESTDIR=$PKG install
|
2007-04-25 14:49:05 +02:00
|
|
|
|
|
|
|
|
|
rm -r $PKG/usr/share
|
2006-02-23 15:26:10 +00:00
|
|
|
|
}
|