summaryrefslogtreecommitdiffstats
path: root/testing/uwsgi/APKBUILD
blob: 4d40b10f95589c6b3509e99fb8a40f61e40a3d22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Contributor: Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi>
# Maintainer:
pkgname=uwsgi
pkgver=1.3
pkgrel=0
pkgdesc="uWSGI application container server"
url=http://projects.unbit.it/uwsgi/
arch=all
license=GPL-2
makedepends="linux-headers lua-dev python python-dev"
subpackages=uwsgi-lua
source="http://projects.unbit.it/downloads/uwsgi-${pkgver}.tar.gz futimes.patch include-sched.patch lua-async.patch"

_builddir=$srcdir/$pkgname-$pkgver
prepare() {
	local i
	cd "$_builddir"
	for i in $source; do
		case $i in
		*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
		esac
	done
}

build() {
	cd "$_builddir"
	export CFLAGS=-D_GNU_SOURCE
	python uwsgiconfig.py --build core
	python uwsgiconfig.py --plugin plugins/lua core
}

package() {
	cd "$_builddir"

	local bindir=$pkgdir/usr/sbin
	install -d "$bindir"
	install uwsgi "$bindir"

	local libdir=$pkgdir/usr/lib/uwsgi
	install -d "$libdir"
	install *_plugin.so "$libdir"
}

lua() {
	depends=uwsgi
      
	local libdir=$subpkgdir/usr/lib/uwsgi
	install -d "$libdir"
	mv "$pkgdir/usr/lib/uwsgi/lua_plugin.so" "$libdir"
}

md5sums="0e83c1ef1b7b01a16c87884d23030ce2  uwsgi-1.3.tar.gz
2c9aeb5b2adf1fa45ef4ed6bda47236a  futimes.patch
02c43e001d5f44eb421079e17f9db003  include-sched.patch
eee9b786b235f577776039c1661b0c63  lua-async.patch"