From 24afc697fac5e64e757c811f95c1b7aa0cf8bf3e Mon Sep 17 00:00:00 2001 From: Kevin Mihelich Date: Wed, 16 Feb 2011 10:12:59 -0500 Subject: [PATCH] Added aur/uwsgi --- aur/uwsgi/PKGBUILD | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 aur/uwsgi/PKGBUILD diff --git a/aur/uwsgi/PKGBUILD b/aur/uwsgi/PKGBUILD new file mode 100644 index 000000000..33e446847 --- /dev/null +++ b/aur/uwsgi/PKGBUILD @@ -0,0 +1,24 @@ +# +# Contributor: Vsevolod Balashov , 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 +}