blob: a4bfb6f22dc6cf491aa9887eb091eb4490fee238 (
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
|
# 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=7.9
release=1
source=( http://downloads.sourceforge.net/$name/$name-$version.tar.bz2 )
build() {
cd $name-$version
./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
}
|