2016-02-02 16:50:37 +00:00
|
|
|
# Description: Perl Compatible Regular Expressions
|
2018-03-21 18:03:08 +01:00
|
|
|
# URL: http://www.pcre.org
|
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
2016-02-02 16:50:37 +00:00
|
|
|
# Depends on:
|
|
|
|
|
|
|
|
name=libpcre2
|
2020-05-10 11:08:21 +02:00
|
|
|
version=10.35
|
2020-07-01 15:21:19 +02:00
|
|
|
release=2
|
2018-03-21 18:03:08 +01:00
|
|
|
source=(https://ftp.pcre.org/pub/pcre/pcre2-$version.tar.bz2)
|
2016-02-02 16:50:37 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd pcre2-$version
|
|
|
|
|
2020-07-01 15:21:19 +02:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--enable-jit \
|
|
|
|
--enable-pcre2-16 \
|
|
|
|
--enable-pcre2-32
|
2016-02-02 16:50:37 +00:00
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
|
|
|
rm -r $PKG/usr/share/doc
|
|
|
|
}
|