Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1 | SUMMARY = "High-Performance Asynchronous HTTP Client Library" |
| 2 | SRC_URI = "${APACHE_MIRROR}/${BPN}/${BPN}-${PV}.tar.bz2 \ |
| 3 | file://norpath.patch \ |
Brad Bishop | bba38f3 | 2018-08-23 16:11:46 +0800 | [diff] [blame] | 4 | 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 \ |
| 9 | " |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 10 | |
| 11 | SRC_URI[md5sum] = "370a6340ff20366ab088012cd13f2b57" |
| 12 | SRC_URI[sha256sum] = "549c2d21c577a8a9c0450facb5cca809f26591f048e466552240947bdf7a87cc" |
| 13 | |
| 14 | LICENSE = "Apache-2.0" |
| 15 | LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327" |
| 16 | |
Brad Bishop | 15ae250 | 2019-06-18 21:44:24 -0400 | [diff] [blame^] | 17 | inherit scons |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 18 | |
Brad Bishop | 15ae250 | 2019-06-18 21:44:24 -0400 | [diff] [blame^] | 19 | DEPENDS += " openssl apr apr-util util-linux expat" |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 20 | |
Brad Bishop | 15ae250 | 2019-06-18 21:44:24 -0400 | [diff] [blame^] | 21 | EXTRA_OESCONS = " \ |
| 22 | LIBDIR=${libdir} \ |
| 23 | --install-sandbox=${D} \ |
| 24 | CC="${CC}" \ |
| 25 | CFLAGS="${CFLAGS}" \ |
| 26 | LINKFLAGS="${LDFLAGS}" \ |
| 27 | APR=`which apr-1-config` \ |
| 28 | APU=`which apu-1-config` \ |
| 29 | OPENSSL="${STAGING_EXECPREFIXDIR}" \ |
| 30 | " |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 31 | |
| 32 | BBCLASSEXTEND = "native" |