# Description: Perl Compatible Regular Expressions # URL: http://www.pcre.org # Maintainer: CRUX System Team, core-ports at crux dot nu name=libpcre version=8.44 release=1 source=(https://ftp.pcre.org/pub/pcre/pcre-$version.tar.bz2) build() { cd pcre-$version ./configure --prefix=/usr \ --enable-utf8 \ --enable-unicode-properties \ --enable-jit make make DESTDIR=$PKG install 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 rm -r $PKG/usr/share/doc rm $PKG/usr/share/man/man3/{pcre{16,32}*,pcre_utf{16,32}*} }