X-Git-Url: http://gitweb/?a=blobdiff_plain;ds=sidebyside;f=libpcre%2FPkgfile;h=e9adc5ce295386ba0644d7f8b8b4da3861188f05;hb=a07eae877ba6ad2572912730950a7778a5517f67;hp=dfab1eccf03789fc2198abce862694185856b5ba;hpb=923627dfdeb4e3c1a8bde4c019ecc62036883a38;p=crossrootfs.git diff --git a/libpcre/Pkgfile b/libpcre/Pkgfile index dfab1ec..e9adc5c 100644 --- a/libpcre/Pkgfile +++ b/libpcre/Pkgfile @@ -5,9 +5,13 @@ # Depends on: name=libpcre -version=8.31 -release=1 -source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-$version.tar.bz2) +version=8.37 +release=5 +source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-$version.tar.bz2 + 01-seven-security-patches.patch \ + $name-$version-CVE-2015-5073.patch \ + $name-$version-CVE-2015-XXXX.patch) + build() { cd pcre-$version @@ -15,7 +19,6 @@ build() { ./configure --build=$CHOST \ --host=$CTARGET \ --prefix=/usr \ - --mandir=/usr/man \ --enable-utf8 \ --enable-unicode-properties \ --enable-jit @@ -24,12 +27,9 @@ build() { make DESTDIR=$PKG install install -d $PKG/lib - local lib - for lib in libpcre libpcrecpp libpcreposix ; do - mv $PKG/usr/lib/${lib}.so* $PKG/lib - ln -sf ../../lib/$(readlink $PKG/lib/${lib}.so) $PKG/usr/lib/${lib}.so - rm $PKG/lib/${lib}.so - done + 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 + rm -r $PKG/usr/share/doc + rm $PKG/usr/share/man/man3/{pcre{16,32}*,pcre_utf{16,32}*} }