41 lines
928 B
Text
41 lines
928 B
Text
# Maintainer: PktSurf <smlinux@pktsurf.in>
|
|
app=pcre2
|
|
version=10.33
|
|
build=1sml
|
|
homepage="https://www.pcre.org/"
|
|
download="https://ftp.pcre.org/pub/pcre/pcre2-$version.tar.gz"
|
|
desc="Perl-compatible regular expression library v2"
|
|
requires="gcc-libs zlib bzip2 readline"
|
|
|
|
prepbuilddir() {
|
|
mkandenterbuilddir
|
|
rm -rf $app-$version
|
|
|
|
tar xf $srcdir/$app-$version.tar.?z*
|
|
cd $app-$version
|
|
fixbuilddirpermissions
|
|
}
|
|
|
|
build() {
|
|
./configure \
|
|
--prefix="" \
|
|
--enable-pcre2-16 \
|
|
--enable-pcre2-32 \
|
|
--enable-jit \
|
|
--enable-pcre2grep-libz \
|
|
--enable-pcre2grep-libbz2 \
|
|
--enable-pcre2test-libreadline \
|
|
--with-match-limit-recursion=8192 \
|
|
--disable-static
|
|
|
|
make
|
|
make install DESTDIR=$pkg
|
|
|
|
cp LICENCE $pkgdocs/
|
|
|
|
mkfinalpkg
|
|
}
|
|
|
|
sha512sums="
|
|
b94e6df0a779c58fce66854b5d64eed1232cc0027362e369a2465b893d9f59c9f01126db6336a5a77714148bf70d4b11c28fd866ee26d061f3f36426495e43bf pcre2-10.33.tar.lz
|
|
"
|