PKGBUILDs/aur/uwsgi/PKGBUILD

25 lines
626 B
Bash
Raw Normal View History

2011-02-16 15:12:59 +00:00
#
# 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
}