blob: 409366004afbd97f2d046eef5f9050740079e69d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require cherokee_${PV}.bb
DEPENDS = "libpcre"
FILESPATH = "${@base_set_filespath([ '${FILE_DIRNAME}/cherokee-${PV}', '${FILE_DIRNAME}/cherokee', '${FILE_DIRNAME}/files', '${FILE_DIRNAME}' ], d)}"
S = "${WORKDIR}/cherokee-${PV}"
EXTRA_OECONF = "--disable-tls --disable-static --disable-nls"
# Fix up files - the ${PN} in the defaults expand to cherokee-nossl
# but we are actually installing into cherokee.
FILES_${PN} += "${datadir}/cherokee ${libdir}/cherokee/*"
FILES_${PN}-dbg += "${libdir}/cherokee/.debug"
|