Merge bk://openembedded@openembedded.bkbits.net/packages
[vuplus_openembedded] / pcre / pcre_4.4.oe
1 SECTION = "unknown"
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 S = "${WORKDIR}/pcre-${PV}"
11
12 inherit autotools binconfig
13
14 CFLAGS_append = " -D_REENTRANT"
15 EXTRA_OECONF = " --with-link-size=2 --enable-newline-is-lf --with-match-limit=10000000"
16
17 do_compile () {
18         ${BUILD_CC} -DLINK_SIZE=2 -I${S}/include -c dftables.c
19         ${BUILD_CC} dftables.o -o dftables
20         oe_runmake
21 }
22
23 do_stage () {
24         oe_libinstall -a -so libpcreposix ${STAGING_LIBDIR}
25         oe_libinstall -a -so libpcre ${STAGING_LIBDIR}
26         install -m 0644 pcre.h ${STAGING_INCDIR}/
27         install -m 0644 pcreposix.h ${STAGING_INCDIR}/
28 }