52 lines
1.7 KiB
Text
52 lines
1.7 KiB
Text
# Maintainer: PktSurf <smlinux@pktsurf.in>
|
|
app=fcgi
|
|
version=2.4.0
|
|
build=1sml
|
|
homepage="https://web-beta.archive.org/web/20160306034010/http://www.fastcgi.com:80/drupal/"
|
|
download="https://sourceforge.net/projects/slackbuildsdirectlinks/files/fcgi/fcgi-$version.tar.gz"
|
|
desc="Simple server and library implementin Fast CGI"
|
|
requires="gcc-libs"
|
|
|
|
prepbuilddir() {
|
|
mkandenterbuilddir
|
|
rm -rf $app-$version
|
|
|
|
tar xf $srcdir/$app-$version.tar.?z*
|
|
cd $app-$version
|
|
fixbuilddirpermissions
|
|
|
|
applypatch $srcdir/fcgi-2.4.0-clientdata-pointer.patch
|
|
applypatch $srcdir/fcgi-2.4.0-gcc44-fix-include.patch
|
|
applypatch $srcdir/fcgi-2.4.0-html-updates.patch
|
|
|
|
# Create some empty files to make autoreconf happy
|
|
touch INSTALL NEWS AUTHORS ChangeLog COPYING
|
|
autoreconf -vif
|
|
|
|
}
|
|
|
|
build() {
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--disable-static
|
|
|
|
make -j1
|
|
make install DESTDIR=$pkg
|
|
|
|
mkdir -p $pkg/usr/share/man/man{1,3}
|
|
cp -a doc/*.1 $pkg/usr/share/man/man1/
|
|
cp -a doc/*.3 $pkg/usr/share/man/man3/
|
|
|
|
cp LICENSE* $pkgdocs/
|
|
|
|
mkfinalpkg
|
|
}
|
|
|
|
sha512sums="
|
|
043ba8cdc284f80611fe79c07df6e90a0f96079534e7e8a5b9114cefa7867cdbbec824c46257c5031ee94ab19512e7ff1d32bcc60d78bd3eacaf16a2837426ac fcgi-2.4.0.tar.lz
|
|
c5339ae940994daeec4cf8030933ca2ab5a00651b91eb5d2ff3b871673b5a62646bfb8e81c190ad6d83015fcf59df4076bc745f097ddcada220ca0dc4a05db6a fcgi-2.4.0-clientdata-pointer.patch
|
|
3a95be5e9a7833a6c68c7760d4d7efa7470ba75cd24974ec68134c3003b15ceeca47575e93bfa82af42506b1141a6ea62e4b2dd67f6e231cf662b413973ad7d1 fcgi-2.4.0-gcc44-fix-include.patch
|
|
79abe9f43150b3163e92030cc9afbee90f69f04bd487254d187abda6fa3484623f605394c96eeb6fd4203d2b06f7e771c9b46f9c21b03cde1aa043da9b3e8d5e fcgi-2.4.0-html-updates.patch
|
|
"
|