mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
Added aur/uwsgi
This commit is contained in:
parent
d481396fde
commit
24afc697fa
1 changed files with 24 additions and 0 deletions
24
aur/uwsgi/PKGBUILD
Normal file
24
aur/uwsgi/PKGBUILD
Normal 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
|
||||
}
|
Loading…
Reference in a new issue