18 lines
409 B
Plaintext
18 lines
409 B
Plaintext
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
|
|
PR_append = "+${DISTRO}.r0"
|
|
|
|
SRC_URI += " \
|
|
file://cherokee.conf \
|
|
file://digi.gif \
|
|
file://index.html \
|
|
"
|
|
|
|
do_install_append() {
|
|
install -m 0644 ${WORKDIR}/cherokee.conf ${D}${sysconfdir}/cherokee/
|
|
install -d ${D}/srv/www
|
|
install -m 0644 ${WORKDIR}/index.html ${D}/srv/www/
|
|
install -m 0644 ${WORKDIR}/digi.gif ${D}/srv/www/
|
|
}
|
|
|
|
FILES_${PN} += "/srv/www"
|