blob: b61206bef17380c8e85aacb23d9a0dc3dcc2a3b5 (
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
|
# 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.12
release=1
source=( http://downloads.sourceforge.net/$name/$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
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/
ln -sf ../../lib/libpcre.so.0 $PKG/usr/lib/libpcre.so
}
|