summaryrefslogtreecommitdiffstats
path: root/main/nginx/APKBUILD
blob: dd83e2aeebcaa632d42db925e88da719a25dc255 (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
# Contributor: Jeff Bilyk <jbilyk@gmail.com>
# Maintainer: Cameron Banta <cbanta@gmail.com>
pkgname=nginx
pkgver=1.0.11
pkgrel=0
pkgdesc="nginx [engine x] is a HTTP and reverse proxy server"
url="http://www.nginx.org"
arch="all"
license="Custom"
depends=
makedepends="pcre-dev openssl-dev zlib-dev"
#install="$pkgname.pre-install $pkgname.post-install"
install=
subpackages=
source="http://nginx.org/download/$pkgname-$pkgver.tar.gz
	nginx.initd
	nginx.logrotate
	$install
	ipv6.patch
	"

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

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

build() {
	cd "$_builddir"
	./configure --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 \
		--with-http_ssl_module \
		--with-http_gzip_static_module \
		--http-client-body-temp-path=/tmp/$pkgname/client-body \
		--http-proxy-temp-path=/tmp/$pkgname/proxy \
		--http-fastcgi-temp-path=/tmp/$pkgname/fastcgi \
		--with-mail \
		--with-mail_ssl_module \
		--with-ipv6 \
		|| 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="a41a01d7cd46e13ea926d7c9ca283a95  nginx-1.0.11.tar.gz
4faf8dff6ff1490edae1688baf1b2abb  nginx.initd
8823274a834332d3db4f62bf7dd1fb7d  nginx.logrotate
801a87f7f9d27f8ad85b41a78b4c4461  ipv6.patch"