CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
kbd: updated to 2.0.4
[crossrootfs.git] / libpcre / Pkgfile
index 04668c163bb74030372475b7c972963a487690be..94e40883cf51824214e754166252a6a0ca6b7f45 100644 (file)
@@ -5,21 +5,28 @@
 # Depends on:
 
 name=libpcre
-version=8.12
+version=8.40
 release=1
 source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-$version.tar.bz2)
 
+
 build() {
   cd pcre-$version
 
   ./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}*}
 }