summaryrefslogtreecommitdiff
path: root/mod_python/Pkgfile
blob: b13a5e0163a957bbc5b57a55602e06200f042197 (plain)
    1 # Description:	Apache module that embeds the Python interpreter.
    2 # URL:			http://www.modpython.org
    3 # Maintainer:	James Mills, prologic at shortcircuit dot net dot au
    4 # Packager:		James Mills, prologic at shortcircuit dot net dot au
    5 #
    6 # Depends on:	apache, python
    7 
    8 name=mod_python
    9 version=3.3.1
   10 release=1
   11 source=(http://www.apache.org/dist/httpd/modpython/mod_python-$version.tgz
   12 			configure.patch)
   13 
   14 build() {
   15 	cd mod_python-$version
   16 	patch -p1 -i $SRC/configure.patch configure
   17 
   18 	./configure \
   19 		--prefix=/usr \
   20 		--with-apxs=/usr/sbin/apxs
   21 
   22 	make
   23 	make DESTDIR=$PKG install
   24 	chown -R root:root $PKG
   25 }

Generated by cgit