23 lines
484 B
Plaintext
23 lines
484 B
Plaintext
# Description: Perl Compatible Regular Expressions
|
|
# URL: http://www.pcre.org
|
|
# Maintainer: Jose V Beneyto, sepen at crux dot nu
|
|
# Packager: Jose V Beneyto, sepen at crux dot nu
|
|
# Depends on:
|
|
|
|
name=libpcre2
|
|
version=10.23
|
|
release=1
|
|
source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre2-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd pcre2-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--enable-jit
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/doc
|
|
}
|