2016-02-02 16:50:37 +00:00
|
|
|
# Description: Perl Compatible Regular Expressions
|
2021-05-28 17:18:31 +02:00
|
|
|
# URL: http://www.pcre.org
|
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
2016-02-02 16:50:37 +00:00
|
|
|
|
|
|
|
name=libpcre2
|
2021-10-03 09:41:02 +02:00
|
|
|
version=10.38
|
2020-12-05 11:14:11 +01:00
|
|
|
release=1
|
2021-10-03 09:41:02 +02:00
|
|
|
source=(https://github.com/PhilipHazel/pcre2/releases/download/pcre2-$version/pcre2-$version.tar.gz)
|
2016-02-02 16:50:37 +00:00
|
|
|
|
|
|
|
build() {
|
2021-05-28 17:18:31 +02:00
|
|
|
cd pcre2-$version
|
2016-02-02 16:50:37 +00:00
|
|
|
|
2021-05-28 17:18:31 +02:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--enable-jit \
|
|
|
|
--enable-pcre2-16 \
|
|
|
|
--enable-pcre2-32
|
2016-02-02 16:50:37 +00:00
|
|
|
|
2021-05-28 17:18:31 +02:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2016-02-02 16:50:37 +00:00
|
|
|
|
2021-05-28 17:18:31 +02:00
|
|
|
rm -r $PKG/usr/share/doc
|
2016-02-02 16:50:37 +00:00
|
|
|
}
|