mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
38 lines
1.2 KiB
Bash
38 lines
1.2 KiB
Bash
# Maintainer: Angel Velasquez <angvp@archlinux.org>
|
|
# Contributor: Vsevolod Balashov <vsevolod@balashov.name>, Kevin Zuber <uKev@knet.eu>
|
|
pkgname=uwsgi
|
|
pkgver=1.2.3
|
|
pkgrel=1
|
|
pkgdesc="a fast (pure C), self-healing, developer-friendly WSGI server"
|
|
arch=(i686 x86_64)
|
|
url="http://projects.unbit.it/$pkgname"
|
|
license=(GPL2)
|
|
depends=(python2 libxml2)
|
|
conflicts=(python-$pkgname)
|
|
makedepends=(gcc python2)
|
|
backup=(etc/conf.d/uwsgid etc/uwsgi/uwsgi.ini)
|
|
source=(http://projects.unbit.it/downloads/$pkgname-$pkgver.tar.gz
|
|
uwsgid.sh
|
|
uwsgi.ini
|
|
uwsgid.conf)
|
|
md5sums=('6090367c826216f59848677a79fb7129'
|
|
'3dd03dce734b50910b3a5e12da0fc062'
|
|
'495afaafac6da631a859ab72c5983c36'
|
|
'5db37c7dbfd432623883d125d7127fbf')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
python2 uwsgiconfig.py --build
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
mkdir -p $pkgdir/usr/bin
|
|
install -Dm755 uwsgi $pkgdir/usr/bin/uwsgi
|
|
mkdir -p $pkgdir/etc/rc.d
|
|
install -Dm755 $srcdir/uwsgid.sh $pkgdir/etc/rc.d/uwsgid
|
|
mkdir -p $pkgdir/etc/conf.d
|
|
install -Dm644 $srcdir/uwsgid.conf $pkgdir/etc/conf.d/uwsgid
|
|
mkdir -p $pkgdir/etc/uwsgi/apps
|
|
install -Dm644 $srcdir/uwsgi.ini $pkgdir/etc/uwsgi/uwsgi.ini
|
|
}
|