core/libpcre/Pkgfile

28 lines
655 B
Plaintext
Raw Normal View History

# Description: Perl Compatible Regular Expressions
2021-12-13 12:11:20 +01:00
# URL: https://www.pcre.org
2021-06-17 17:27:47 +02:00
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=libpcre
2021-06-17 17:27:47 +02:00
version=8.45
release=1
2021-11-14 17:00:42 +01:00
source=(https://downloads.sourceforge.net/project/pcre/pcre/$version/pcre-$version.tar.bz2)
build() {
2021-06-17 17:27:47 +02:00
cd pcre-$version
2021-06-17 17:27:47 +02:00
./configure \
--prefix=/usr \
--enable-utf8 \
--enable-unicode-properties \
--enable-jit
make
make DESTDIR=$PKG install
2021-06-17 17:27:47 +02:00
install -d $PKG/lib
mv $PKG/usr/lib/libpcre.so.* $PKG/lib
ln -sf ../../lib/$(readlink $PKG/usr/lib/libpcre.so) $PKG/usr/lib/libpcre.so
2021-06-17 17:27:47 +02:00
rm -r $PKG/usr/share/doc
rm $PKG/usr/share/man/man3/{pcre{16,32}*,pcre_utf{16,32}*}
}