From c82e88dd00d1b0b7fcfb4e5628d99611388cef6f Mon Sep 17 00:00:00 2001 From: rawnix ports Date: Sat, 26 Sep 2026 18:19:05 +0000 Subject: sync 2026-09-26 18:19 UTC 1672 files changed, 151396 insertions(+) --- core/pcre2/MAKEPKG | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 core/pcre2/MAKEPKG (limited to 'core/pcre2/MAKEPKG') diff --git a/core/pcre2/MAKEPKG b/core/pcre2/MAKEPKG new file mode 100644 index 0000000..43aab6b --- /dev/null +++ b/core/pcre2/MAKEPKG @@ -0,0 +1,45 @@ +#!/bin/mkpkg +# description: Perl Compatible Regular Expressions (v2) +# url: https://github.com/PCRE2Project/pcre2 + +name=pcre2 +version=10.48 +release=1 +source=(https://github.com/PCRE2Project/pcre2/releases/download/pcre2-$version/pcre2-$version.tar.bz2) +depends=() +makedeps=() + +sha256sums=( + "b6c68fdf6f3ac31388b50aa89ff0fc49c00c987c16e7b5146491d12003f2c8ed" +) + +build() { + cd pcre2-$version + + ./configure \ + --prefix=/ \ + --libdir=/lib \ + --includedir=/include \ + --bindir=/bin \ + --mandir=/usr/share/man \ + --disable-static \ + --enable-unicode \ + --enable-pcre2-16 \ + --enable-pcre2-32 \ + --enable-pcre2grep-libz \ + --disable-pcre2grep-libbz2 \ + --enable-jit + + make + make DESTDIR=$PKG install + + # Remove docs + rm -rf $PKG/share +} + +signify() { + untrusted comment: public key + RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 +} + +# vim: filetype=sh -- cgit v1.3.1