opt/libpcre2/Pkgfile

24 lines
415 B
Plaintext
Raw Normal View History

2016-02-02 17:50:37 +01: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 17:50:37 +01:00
name=libpcre2
2021-05-28 17:18:31 +02:00
version=10.37
2020-12-05 11:14:11 +01:00
release=1
source=(https://ftp.pcre.org/pub/pcre/pcre2-$version.tar.bz2)
2016-02-02 17:50:37 +01:00
build() {
2021-05-28 17:18:31 +02:00
cd pcre2-$version
2016-02-02 17:50:37 +01:00
2021-05-28 17:18:31 +02:00
./configure \
--prefix=/usr \
--enable-jit \
--enable-pcre2-16 \
--enable-pcre2-32
2016-02-02 17:50:37 +01:00
2021-05-28 17:18:31 +02:00
make
make DESTDIR=$PKG install
2016-02-02 17:50:37 +01:00
2021-05-28 17:18:31 +02:00
rm -r $PKG/usr/share/doc
2016-02-02 17:50:37 +01:00
}