blob: 927c901e95f8eb31db972f21f9badd5b566e3a7b (
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
|
# Maintainer: Nissar Chababy <funilrys at outlook dot com>
# Ex-Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
_ngx_ver=1.24.0
_mod_name=echo
pkgname=nginx-mod-${_mod_name}-git
pkgver=0.63
pkgrel=1
pkgdesc='Nginx module that brings shell-style goodiesto nginx config file'
arch=('i686' 'x86_64')
url='https://github.com/openresty/echo-nginx-module'
license=('custom')
depends=("nginx=$_ngx_ver")
makedepends=('git')
source=("git+https://github.com/openresty/${_mod_name}-nginx-module.git"
"http://nginx.org/download/nginx-${_ngx_ver}.tar.gz")
md5sums=('SKIP'
'f95835b55b3cbf05a4368e7bccbb8a46')
_ngx_flags=(
--with-file-aio
--with-http_addition_module
--with-http_auth_request_module
--with-http_dav_module
--with-http_degradation_module
--with-http_flv_module
--with-http_geoip_module
--with-http_gunzip_module
--with-http_gzip_static_module
--with-http_mp4_module
--with-http_realip_module
--with-http_secure_link_module
--with-http_ssl_module
--with-http_stub_status_module
--with-http_sub_module
--with-http_v2_module
--with-ipv6
--with-mail
--with-mail_ssl_module
--with-pcre-jit
--with-stream
--with-stream_ssl_module
--with-threads
)
pkgver() {
cd ${_mod_name}-nginx-module
git describe --long --tags --abbrev=7 | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd nginx-${_ngx_ver}
./configure --prefix=/usr ${_ngx_flags[@]} \
--add-dynamic-module="$srcdir"/${_mod_name}-nginx-module
make -f objs/Makefile modules
}
package() {
cd nginx-${_ngx_ver}/objs
for module in *.so; do
install -Dm755 $module "$pkgdir"/usr/lib/nginx/modules/$module
done
install -d "$pkgdir"/usr/share/licenses/$pkgname/
sed -n '1806,1827p' "$srcdir"/${_mod_name}-nginx-module/README.markdown > \
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}
|