Merge oe-devel@oe-devel.bkbits.net:packages
[openembedded.git] / 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 SECTION = "devel"
8 PR = "r1"
9
10 SRC_URI = "ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-${PV}.tar.bz2"
11 S = "${WORKDIR}/pcre-${PV}"
12
13 inherit autotools binconfig
14
15 LEAD_SONAME = "libpcre.so"
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 }
31
32 FILES_${PN} = "${libdir}/lib*.so*"
33 FILES_${PN}-dev += "${bindir}"