mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-12-16 07:15:43 +01:00
Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
32 lines
1.0 KiB
BlitzBasic
32 lines
1.0 KiB
BlitzBasic
SUMMARY = "Websocket module for Apache web server"
|
|
DESCRIPTION = "Process requests using the WebSocket protocol (RFC 6455)"
|
|
HOMEPAGE = "https://github.com/jchampio/apache-websocket/"
|
|
SECTION = "net"
|
|
LICENSE = "Apache-2.0"
|
|
|
|
inherit autotools-brokensep pkgconfig
|
|
|
|
DEPENDS = "apache2 apache2-native pbzip2-native"
|
|
RDEPENDS:${PN} += "apache2"
|
|
|
|
# Original (github.com/disconnect/apache-websocket) is dead since 2012, the
|
|
# fork contains patches from the modules ML and fixes CVE compliance issues
|
|
SRC_URI = "git://github.com/jchampio/apache-websocket.git;branch=master;protocol=https"
|
|
|
|
SRCREV = "0ee34c77fc78ff08fd548706300b80a7bc7874e4"
|
|
|
|
PV = "0.1.2+git"
|
|
|
|
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93"
|
|
|
|
EXTRA_OECONF = "APACHECTL=${STAGING_DIR_TARGET}${sbindir}/apachectl"
|
|
|
|
do_install() {
|
|
install -d ${D}${libexecdir}/apache2/modules
|
|
install -m 755 ${B}/.libs/mod_websocket.so ${D}${libexecdir}/apache2/modules
|
|
}
|
|
|
|
FILES:${PN} += " ${libexecdir}/apache2/modules/* "
|
|
FILES:${PN}-dbg += " ${libexecdir}/apache2/modules/.debug/* "
|