blob: 59f72890a302756f77d9ba0bd80adc9b672ffbd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Description: Contient les librairies pour Perl Compatible Regular Expression
# URL: http://www.pcre.org/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on:
name=pcre
version=8.31
release=1
source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/$name-$version.tar.bz2)
build() {
cd $name-$version
[ "${CARCH}" = "x86_64" ] && export CFLAGS="${CFLAGS} -fPIC"
./configure --prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--docdir=/usr/share/doc/pcre-$version \
--enable-utf8 \
--enable-unicode-properties \
--enable-pcregrep-libz \
--enable-pcregrep-libbz2 \
--enable-pcre16 \
--enable-jit
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/doc
# grep uses pcre, so we need the libs in /lib
install -dm755 $PKG/lib
cp -a $PKG/usr/lib/libpcre.so* $PKG/lib/
}
|