diff options
-rw-r--r-- | meta-webserver/recipes-httpd/apache-mod/apache-websocket_git.bb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/meta-webserver/recipes-httpd/apache-mod/apache-websocket_git.bb b/meta-webserver/recipes-httpd/apache-mod/apache-websocket_git.bb index 0beb3ed04a..c44efb6cd1 100644 --- a/meta-webserver/recipes-httpd/apache-mod/apache-websocket_git.bb +++ b/meta-webserver/recipes-httpd/apache-mod/apache-websocket_git.bb | |||
@@ -1,6 +1,6 @@ | |||
1 | SUMMARY = "Websocket module for Apache web server" | 1 | SUMMARY = "Websocket module for Apache web server" |
2 | DESCRIPTION = "Process requests using the WebSocket protocol (RFC 6455)" | 2 | DESCRIPTION = "Process requests using the WebSocket protocol (RFC 6455)" |
3 | HOMEPAGE = "https://github.com/jchampio/${PN}/" | 3 | HOMEPAGE = "https://github.com/jchampio/apache-websocket/" |
4 | SECTION = "net" | 4 | SECTION = "net" |
5 | LICENSE = "Apache-2.0" | 5 | LICENSE = "Apache-2.0" |
6 | 6 | ||
@@ -13,9 +13,9 @@ RDEPENDS_${PN} += "apache2" | |||
13 | # fork contains patches from the modules ML and fixes CVE compliance issues | 13 | # fork contains patches from the modules ML and fixes CVE compliance issues |
14 | SRC_URI = "git://github.com/jchampio/apache-websocket.git" | 14 | SRC_URI = "git://github.com/jchampio/apache-websocket.git" |
15 | 15 | ||
16 | SRCREV = "f5230d8c520dccf8631da94bf90c23f3c1100dcc" | 16 | SRCREV = "6968083264b90b89b1b9597a4ca03ba29e7ea2e1" |
17 | 17 | ||
18 | PV = "0.1.1" | 18 | PV = "0.1.1+git${SRCPV}" |
19 | 19 | ||
20 | S = "${WORKDIR}/git" | 20 | S = "${WORKDIR}/git" |
21 | 21 | ||
@@ -25,8 +25,8 @@ EXTRA_OECONF = "APACHECTL=${STAGING_DIR_TARGET}${sbindir}/apachectl \ | |||
25 | LIBTOOL=${STAGING_DIR_TARGET}${bindir_crossscripts}/${HOST_SYS}-libtool" | 25 | LIBTOOL=${STAGING_DIR_TARGET}${bindir_crossscripts}/${HOST_SYS}-libtool" |
26 | 26 | ||
27 | do_install() { | 27 | do_install() { |
28 | install -d ${D}${libdir}/apache2/modules/ | 28 | install -d ${D}${libdir}/apache2/modules |
29 | install ${B}/.libs/mod_websocket.so ${D}${libdir}/apache2/modules/ | 29 | install -m 755 ${B}/.libs/mod_websocket.so ${D}${libdir}/apache2/modules |
30 | } | 30 | } |
31 | 31 | ||
32 | FILES_${PN} += " ${libdir}/apache2/modules/* " | 32 | FILES_${PN} += " ${libdir}/apache2/modules/* " |