Files
openwrt_yocto/meta-openembedded/meta-webserver/recipes-support/fcgiwrap/fcgiwrap_git.bb
T
francis.wang 4c86c082a2 Initial commit: OpenWrt-Yocto monorepo
Combine poky (Yocto scarthgap), meta-openembedded (scarthgap), and
meta-openwrt into a single repository.

Components:
- poky/             Yocto core framework (BitBake + OE-Core)
- meta-openembedded/ Community layers (meta-oe, meta-python, meta-networking)
- meta-openwrt/     OpenWrt customization layer
- setup-env.sh      One-click build environment setup
- README.md         Project documentation
2026-07-11 13:28:01 +08:00

25 lines
761 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"
S = "${WORKDIR}/git"
CFLAGS =+ "-I${B}"
EXTRA_OEMAKE = "VPATH=${S}"
inherit autotools pkgconfig
do_install() {
install -Dm 755 ${B}/fcgiwrap ${D}${sbindir}/fcgiwrap
}