source: npl/internetserver/mod_fcgid/mod_fcgid.bla @ f33f781

Last change on this file since f33f781 was c5c522c, checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago

initial commit, transferred from cleaned syn3 svn tree

  • Property mode set to 100755
File size: 623 bytes
Line 
1#!/bin/sh
2#NEED:apache2
3
4NAME=mod_fcgid
5VERSION=1.07
6TAR=$NAME.$VERSION.tar.gz
7CWD=`pwd`
8TMP=${TMP:-/tmp}
9if [ ! -d $TMP ]; then
10  mkdir -p $TMP
11fi
12
13tar -xzf $TAR || exit 1
14cd $NAME.$VERSION || exit 1
15#cp Makefile.AP2 Makefile || exit 1
16
17#patch -p1 fcgi.h < $CWD/ap22.patch || exit 1
18
19make -j1 top_dir=/var/www || exit 1
20make -j1 top_dir=/var/www  install || exit 1
21mkdir $PKG/usr/lib/apache2
22#cp .libs/mod_fastcgi.so $PKG/usr/lib/apache2 || exit 1
23
24cd $PKG
25#makepkg -l y -c n $CWD/php-$VERSION-$ARCH-$BUILD.tgz
26makepkg -l y -c n $CWD/$NAME.pkg > /dev/null &&
27echo $VERSION > $CWD/$NAME.version &&
28arch > $CWD/$NAME.arch
29
Note: See TracBrowser for help on using the repository browser.