Merge openembedded@openembedded.bkbits.net:packages
[vuplus_openembedded] / pcre / pcre_4.4.oe
1 DEPENDS = "virtual/libc"
2 DESCRIPTION = "Perl-compatible regular expression library. PCRE has its own native \
3 API, but a set of 'wrapper' functions that are based on the POSIX API \
4 are also supplied in the library libpcreposix. Note that this just \
5 provides a POSIX calling interface to PCRE; the regular expressions \
6 themselves still follow Perl syntax and semantics. The header file for \
7 the POSIX-style functions is called pcreposix.h."
8
9 SRC_URI = "ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-${PV}.tar.bz2 \
10            file://${FILESDIR}/rpath.patch;patch=1 \
11            file://${FILESDIR}/lai.patch;patch=1"
12 S = "${WORKDIR}/pcre-${PV}"
13
14 inherit autotools 
15
16 CFLAGS_append = " -D_REENTRANT"
17 EXTRA_OECONF = " --with-link-size=2 --enable-newline-is-lf --with-match-limit=10000000"
18
19 do_compile () {
20         ${BUILD_CC} -DLINK_SIZE=2 -I${S}/include -c dftables.c
21         ${BUILD_CC} dftables.o -o dftables
22         oe_runmake
23 }
24
25 do_stage () {
26         oe_libinstall -a -so libpcreposix ${STAGING_LIBDIR}
27         oe_libinstall -a -so libpcre ${STAGING_LIBDIR}
28         install -m 0644 pcre.h ${STAGING_INCDIR}/
29         install -m 0644 pcreposix.h ${STAGING_INCDIR}/
30 }