Added aur/uwsgi

This commit is contained in:
Kevin Mihelich 2011-02-16 10:12:59 -05:00
parent d481396fde
commit 24afc697fa

24
aur/uwsgi/PKGBUILD Normal file
View file

@ -0,0 +1,24 @@
#
# Contributor: Vsevolod Balashov <vsevolod@balashov.name>, Kev
plugrel=1
pkgname=uwsgi
pkgver=0.9.6.8
pkgrel=1
pkgdesc="A fast (pure C), self-healing, developer-friendly WSGI server"
arch=(i686 x86_64 arm)
url="http://projects.unbit.it/$name"
license=(GPL2)
depends=('python2' 'libxml2')
conflicts=(python-${pkgname})
makedepends=('gcc' 'python2')
source=(http://projects.unbit.it/downloads/${pkgname}-${pkgver}.tar.gz)
md5sums=('4a9b8bef52e2ff60fab645d595d1128e')
build() {
cd $srcdir/${pkgname}-${pkgver}
CFLAGS='' make -f Makefile.Py27
mkdir -p ${pkgdir}/usr/bin
install -Dm755 uwsgi ${pkgdir}/usr/bin/uwsgi
}