diff options
author | James Meyer <james.meyer@operamail.com> | 2008-10-23 01:40:37 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2008-10-23 01:40:37 (GMT) |
commit | 7f24a313f0815854ff88a0e33a066a73de4f3be1 (patch) | |
tree | 63f1de317bd6d4d3b283939c3481c3ed3e4e71f9 /abs/core-testing/fcgi/PKGBUILD | |
parent | de2ffe85032410437eb7dabdec63031e908fd43c (diff) | |
download | linhes_pkgbuild-7f24a313f0815854ff88a0e33a066a73de4f3be1.zip linhes_pkgbuild-7f24a313f0815854ff88a0e33a066a73de4f3be1.tar.gz linhes_pkgbuild-7f24a313f0815854ff88a0e33a066a73de4f3be1.tar.bz2 |
initial checkin of lighttpd and supporting libs.
Also included is a new package callede local-website.
This package contains the contents of http://localhost that runs on every LinHES box.
The initial checkin is taken from R5.5
Diffstat (limited to 'abs/core-testing/fcgi/PKGBUILD')
-rw-r--r-- | abs/core-testing/fcgi/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/abs/core-testing/fcgi/PKGBUILD b/abs/core-testing/fcgi/PKGBUILD new file mode 100644 index 0000000..e7cf3c5 --- /dev/null +++ b/abs/core-testing/fcgi/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 12749 2008-09-19 13:48:16Z pierre $ +# Maintainer: tobias <tobias@justdreams.de> +# Modified by: eliott <eliott@cactuswax.net> +# Original by Benjamin Andresen, klapmuetz [at] gmail [dot] com + +pkgname=fcgi +pkgver=2.4.0 +pkgrel=5 +depends=('gcc-libs') +pkgdesc="FASTCgi(fcgi) islanguage independent, high performant extension to CGI" +arch=(i686 x86_64) +license=('custom') +options=('!libtool') +url="http://www.fastcgi.com" +source=("http://www.fastcgi.com/dist/$pkgname-$pkgver.tar.gz" 'fcgi-configure.patch') +md5sums=('d15060a813b91383a9f3c66faf84867e' '4312cdf8ee47c9f8a276e7d892a18ea6') + +build() { + cd $startdir/src/$pkgname-$pkgver + # fix from Debian: http://ftp.debian.org/debian/pool/main/libf/libfcgi/libfcgi_2.4.0-7.diff.gz + patch -p1 -i ${srcdir}/fcgi-configure.patch || return 1 + ./configure --prefix=/usr + make || return 1 + make DESTDIR=$startdir/pkg install || return 1 + install -Dm 644 LICENSE.TERMS \ + ${startdir}/pkg/usr/share/licenses/${pkgname}/LICENSE +} |