blob: ab2e9306cf15afbd37c1954fd37e0e35028b464c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Description: Perl Compatible Regular Expressions
# URL: http://www.pcre.org
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=libpcre
version=8.10
release=1
source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-$version.tar.bz2)
build() {
cd pcre-$version
./configure --prefix=/usr \
--mandir=/usr/man \
--enable-utf8 \
--enable-unicode-properties
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share
}
|