X-Git-Url: http://gitweb/?a=blobdiff_plain;f=libpcre%2FPkgfile;h=9721a6cc06d2c32220fb94d73d83229c17817e7e;hb=4466e574d8c1151a707caddb2238a54f986cab6f;hp=946f600d42785170dfcaa76901fb5c8cbbd52332;hpb=6dca1d213a39ee6af51632926e8b7c8914215cd9;p=crossrootfs.git diff --git a/libpcre/Pkgfile b/libpcre/Pkgfile index 946f600..9721a6c 100644 --- a/libpcre/Pkgfile +++ b/libpcre/Pkgfile @@ -1,12 +1,14 @@ # Description: Perl Compatible Regular Expressions # URL: http://www.pcre.org # Maintainer: CRUX System Team, core-ports at crux dot nu -# Arch Maintainer: CRUX-ARM System Team, crux-arm at mikeux dot dyndns dot org +# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu +# Depends on: name=libpcre -version=7.9 +version=8.42 release=1 -source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-$version.tar.bz2) +source=(https://ftp.pcre.org/pub/pcre/pcre-$version.tar.bz2) + build() { cd pcre-$version @@ -14,11 +16,17 @@ build() { ./configure --build=$CHOST \ --host=$CTARGET \ --prefix=/usr \ - --mandir=/usr/man \ --enable-utf8 \ - --enable-unicode-properties + --enable-unicode-properties \ + --enable-jit + make make DESTDIR=$PKG install - rm -r $PKG/usr/share + 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}*} }