mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00: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>
24 lines
740 B
BlitzBasic
24 lines
740 B
BlitzBasic
SUMMARY = "FastCGI wrapper for CGI scripts"
|
|
DESCRIPTION = "FcgiWrap is a simple server for running CGI applications over FastCGI. Fcgiwrap can be used together with Nginx to serve CGI or Perl scripts"
|
|
HOMEPAGE = "https://github.com/gnosek/fcgiwrap"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=a95d02d614a3a0232d4e6e51b7963c5b"
|
|
|
|
DEPENDS = "fcgi"
|
|
|
|
SRC_URI = "git://github.com/gnosek/fcgiwrap.git;protocol=https;branch=${BRANCH} \
|
|
file://0001-Fix-implicit-fallthrough-warning.patch \
|
|
"
|
|
BRANCH = "master"
|
|
SRCREV = "99c942c90063c73734e56bacaa65f947772d9186"
|
|
|
|
CFLAGS =+ "-I${B}"
|
|
EXTRA_OEMAKE = "VPATH=${S}"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
do_install() {
|
|
install -Dm 755 ${B}/fcgiwrap ${D}${sbindir}/fcgiwrap
|
|
}
|