blob: a2c43e3c78bc2bf22b6f6e1af1890e53763dfab6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Cherokee web server
DESCRIPTION = "Cherokee Web Server fast and secure"
LICENSE = "GPL"
SECTION = "network"
DEPENDS = "openssl libpcre"
SRC_URI = "http://www.0x50.org/download/0.4/${PV}/${P}.tar.gz \
file://configure.patch;patch=1 \
file://Makefile.in.patch;patch=1 \
file://Makefile.cget.patch;patch=1 \
file://util.patch;patch=1"
PR = "${INC_PR}.0"
inherit autotools
LEAD_SONAME = "libcherokee-base"
EXTRA_OECONF = "--enable-tls=openssl --disable-static --disable-nls"
do_configure() {
gnu-configize
oe_runconf
}
do_install_prepend () {
$BUILD_CC -DHAVE_SYS_STAT_H -o cherokee_replace cherokee_replace.c
}
|