summaryrefslogtreecommitdiffstats
path: root/base/pcre/Pkgfile
blob: bc45ab5287fd056048f8f388f5ffd458f9157c82 (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=8.02
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
}