new package:

- add pcre
This commit is contained in:
Stephan Raue 2009-10-19 06:31:25 +02:00
parent c6e6cfb592
commit 6c943d1128
3 changed files with 29 additions and 0 deletions

21
packages/devel/pcre/build Executable file
View File

@ -0,0 +1,21 @@
#!/bin/sh
. config/options
$SCRIPTS/build toolchain
cd $PKG_BUILD
./configure --host=$TARGET_NAME \
--build=$HOST_NAME \
--prefix=/usr \
--exec-prefix=/usr \
--sysconfdir=/etc \
--datadir=/usr/share \
--enable-shared \
--disable-static \
--enable-utf8 \
--enable-unicode-properties \
make
$MAKEINSTALL

7
packages/devel/pcre/install Executable file
View File

@ -0,0 +1,7 @@
#!/bin/sh
. config/options
mkdir -p $INSTALL/usr/lib
cp $PKG_BUILD/.libs/libpcre*.so*[.0-9] $INSTALL/usr/lib

1
packages/devel/pcre/url Normal file
View File

@ -0,0 +1 @@
ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-7.9.tar.bz2