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