blob: dd4133a45c206191b481422f786366bd6b0b3ba5 [file] [log] [blame]
Brad Bishop6e60e8b2018-02-01 10:27:11 -05001SUMMARY = "High-Performance Asynchronous HTTP Client Library"
2SRC_URI = "${APACHE_MIRROR}/${BPN}/${BPN}-${PV}.tar.bz2 \
3 file://norpath.patch \
Brad Bishopbba38f32018-08-23 16:11:46 +08004 file://env.patch \
5 file://0001-Fix-syntax-of-a-print-in-the-scons-file-to-unbreak-b.patch \
6 file://0002-SConstruct-Fix-path-quoting-for-.def-generator.patch \
7 file://0003-gen_def.patch \
8 file://0004-Follow-up-to-r1811083-fix-building-with-scons-3.0.0-.patch \
Brad Bishopf3fd2882019-06-21 08:06:37 -04009 file://SConstruct.stop.creating.directories.without.sandbox-install.prefix.patch \
Brad Bishopbba38f32018-08-23 16:11:46 +080010 "
Brad Bishop6e60e8b2018-02-01 10:27:11 -050011
12SRC_URI[md5sum] = "370a6340ff20366ab088012cd13f2b57"
13SRC_URI[sha256sum] = "549c2d21c577a8a9c0450facb5cca809f26591f048e466552240947bdf7a87cc"
14
15LICENSE = "Apache-2.0"
16LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
17
Brad Bishop15ae2502019-06-18 21:44:24 -040018inherit scons
Brad Bishop6e60e8b2018-02-01 10:27:11 -050019
Brad Bishop15ae2502019-06-18 21:44:24 -040020DEPENDS += " openssl apr apr-util util-linux expat"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050021
Brad Bishop15ae2502019-06-18 21:44:24 -040022EXTRA_OESCONS = " \
23 LIBDIR=${libdir} \
24 --install-sandbox=${D} \
25 CC="${CC}" \
26 CFLAGS="${CFLAGS}" \
27 LINKFLAGS="${LDFLAGS}" \
28 APR=`which apr-1-config` \
29 APU=`which apu-1-config` \
30 OPENSSL="${STAGING_EXECPREFIXDIR}" \
31 "
Brad Bishop6e60e8b2018-02-01 10:27:11 -050032
33BBCLASSEXTEND = "native"