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

Generated by cgit