smlinux/net/fcgiwrap/fcgiwrap.SMBuild
PktSurf 437ea7322b Added proper build functions in base/rpi-userland
Added licenses to net/{autossh,comgt,fcgiwrap,fail2ban,wpa_supplicant}
Fixed prefix, added code to backup and configure additional conf files in net/nginx
Function call reordering and some cleanups in net/php
Replaced old init script with runit script in net/privoxy
2023-03-30 21:15:29 +05:30

41 lines
929 B
Text
Executable file

app=fcgiwrap
version=1.1.0
build=2sml
homepage="https://github.com/gnosek/fcgiwrap"
download="https://github.com/gnosek/fcgiwrap/archive/refs/tags/$version.tar.gz"
desc="Simple FastCGI wrapper for CGI scripts"
requires="fcgi"
prepbuilddir() {
mkandenterbuilddir
rm -rf $app-$version
tar xf $srcdir/$app-$version.tar.?z*
cd $app-$version
fixbuilddirpermissions
}
build() {
./configure \
--prefix="" \
--sbindir=/bin \
--sysconfdir=/etc \
--localstatedir=/var \
--mandir=/share/man
sed -i 's@-Werror@@g' Makefile
make
make install DESTDIR=$pkg
cp $srcdir/LICENSE $pkgdocs/
install -Dm 0755 $srcdir/spawn-fcgi $pkg/bin/spawn-fcgi
install -Dm 0755 $srcdir/rc.spawn-fcgi $pkg/etc/rc.d/rc.spawn-fcgi
mkfinalpkg
}
sha512sums="
88234a72b9941532f259f799fd4e4f1b3b854b9a6689bcff943b4fc852013392fda2f43166289f15fa780f5d52bc4a7eabacf90f44d90e4f86346f371cd422ec fcgiwrap-1.1.0.tar.lz
"