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 +}