aboutsummaryrefslogtreecommitdiffstats
path: root/main/nginx/APKBUILD
blob: dfd32500df9829f3b2b53db8a68d13b3ee1f5ad3 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# Maintainer: Cameron Banta <cbanta@gmail.com>
# Contributor: Jeff Bilyk <jbilyk@gmail.com>
# Contributor: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>

pkgname=nginx
pkgver=1.4.2
pkgrel=0
pkgdesc="lightweight HTTP and reverse proxy server"
url="http://www.nginx.org"
arch="all"
license="Custom"
makedepends="pcre-dev openssl-dev zlib-dev"
source="http://nginx.org/download/$pkgname-$pkgver.tar.gz
	nginx.initd
	nginx.logrotate
	ipv6.patch
	"

_builddir="$srcdir"/$pkgname-$pkgver

prepare() {
	cd "$_builddir"
	patch -Np1 -i "$srcdir"/ipv6.patch
}


build() {
	cd "$_builddir"
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--conf-path=/etc/$pkgname/$pkgname.conf \
		--pid-path=/var/run/$pkgname.pid \
		--lock-path=/var/run/$pkgname.lock \
		--error-log-path=/var/log/$pkgname/error.log \
		--http-log-path=/var/log/$pkgname/access.log \
		--http-client-body-temp-path=/tmp/$pkgname/client-body \
		--http-proxy-temp-path=/tmp/$pkgname/proxy \
		--http-fastcgi-temp-path=/tmp/$pkgname/fastcgi \
		--user=http \
		--group=http \
		--with-ipv6 \
		--with-pcre-jit \
		--with-http_ssl_module \
		--with-http_gzip_static_module \
		--with-http_spdy_module \
		--with-mail \
		--with-mail_ssl_module \
		|| return 1 
	make || return 1
}

package() {
	cd "$_builddir"
	make DESTDIR="$pkgdir" install

	install -m755 -D "$srcdir"/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname
	install -m644 -D "$srcdir"/$pkgname.logrotate "$pkgdir"/etc/logrotate.d/$pkgname

	install -m644 -D LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}

md5sums="5053bacc7df548890f1c93735bddc81e  nginx-1.4.2.tar.gz
4faf8dff6ff1490edae1688baf1b2abb  nginx.initd
8823274a834332d3db4f62bf7dd1fb7d  nginx.logrotate
801a87f7f9d27f8ad85b41a78b4c4461  ipv6.patch"
sha256sums="5361ffb7b0ebf8b1a04369bc3d1295eaed091680c1c58115f88d56c8e51f3611  nginx-1.4.2.tar.gz
34e9b1dbb9f5fe4d71f7469ded3eb98fac02f57ecfbfd04ba623099766b4709c  nginx.initd
cea0c6f8de55a4c3a3eccc57910de1c3116634082c8e5b660630fb927a29f38d  nginx.logrotate
a24ef5843ae0afa538b00c37eb7da7870f9d7f146f52a9668678f7296cf71d9b  ipv6.patch"
sha512sums="987acd1f2f20a6e231e73f07fc77bef57c332c09c3b06ca125ad385835eb9e1fc9adca6962456d02edb976207140974d3695bcb96bf65d3a6d54c5c3db856115  nginx-1.4.2.tar.gz
e153ff131ca5a62f01744c45e97421db0776be518a84a8d09896955a996e5a0133c03cdfa7ac6b03bad75b5cbb839f49dcccbb210843010da42445706f239a12  nginx.initd
01b77cff16f6e8bfd7fa1d4d20f625bbcddd08f0509173452d060c342c93dc315a7b0560f4734323a5d29ea294de0491f2e3f32e5337574e1a28ebc005eceea8  nginx.logrotate
68d64a84568ec2df0366925ab282a05ebe21a85044b6c7844a47573cfd8cc8ed119cc772358bc3fff36e2d4fdf583a730592825f5f98632993ca86d1f8438d5f  ipv6.patch"