core/libpcre/Pkgfile

23 lines
542 B
Plaintext
Raw Normal View History

# Description: Perl Compatible Regular Expressions
# URL: http://www.pcre.org
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=libpcre
2011-10-24 18:48:29 +02:00
version=8.20
2011-10-28 10:06:39 +02:00
release=2
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 \
2011-10-28 10:06:39 +02:00
--enable-unicode-properties \
--enable-jit
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share
}